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
$labels = apply_filters( "post_type_labels_{$post_type}", $labels );
Changelog
Version | Description |
---|---|
3.5.0 | Introduced. |
If you need to modify the post type labels, note the labels parameter for this filter is an object, not an array.
In the example below, the post type is “employee” and the new label reference is “headshot”.