post_type_labels_{$post_type} WordPress Filter Hook
The post_type_labels_{$post_type} hook allows you to modify the labels for a custom post type. This can be useful if you want to change the way the labels are displayed in the admin interface or in the front-end of your site.
apply_filters( "post_type_labels_{$post_type}", object $labels ) #
Filters the labels of a specific post type.
Description
The dynamic portion of the hook name, $post_type
, refers to the post type slug.
Possible hook names include:
post_type_labels_post
post_type_labels_page
post_type_labels_attachment
See also
- get_post_type_labels(): for the full list of labels.
Parameters
- $labels
(object)Object with labels for the post type as member variables.
Source
File: wp-includes/post.php
Changelog
Version | Description |
---|---|
3.5.0 | Introduced. |