post_type_labels_(post_type)
Filters the labels of a specific post type.
The dynamic portion of the hook name, $post_type, refers to the post type slug.
Possible hook names include:
Usage
add_filter( 'post_type_labels_(post_type)', 'wp_kama_post_type_labels_filter' ); /** * Function for `post_type_labels_(post_type)` filter-hook. * * @param object $labels Object with labels for the post type as member variables. * * @return object */ function wp_kama_post_type_labels_filter( $labels ){ // filter... return $labels; }
- $labels(object)
- Object with labels for the post type as member variables.
Changelog
Since 3.5.0 | Introduced. |
Where the hook is called
wp-includes/post.php 2127
$labels = apply_filters( "post_type_labels_{$post_type}", $labels );