[wp-trac] [WordPress Trac] #35097: New filter: `edit_post_type_title`
WordPress Trac
noreply at wordpress.org
Tue Dec 15 09:54:13 UTC 2015
#35097: New filter: `edit_post_type_title`
-------------------------------+------------------------------
Reporter: sebastian.pisula | Owner:
Type: enhancement | Status: new
Priority: normal | Milestone: Awaiting Review
Component: Posts, Post Types | Version:
Severity: normal | Resolution:
Keywords: has-patch | Focuses:
-------------------------------+------------------------------
Comment (by SergeyBiryukov):
A workaround:
{{{
function wp35097_change_post_type_title_on_edit_screen() {
global $post_type_object;
$post_type_object->labels->name = 'My Custom Name';
}
add_action( 'admin_head-edit.php',
'wp35097_change_post_type_title_on_edit_screen' );
}}}
--
Ticket URL: <https://core.trac.wordpress.org/ticket/35097#comment:4>
WordPress Trac <https://core.trac.wordpress.org/>
WordPress publishing platform
More information about the wp-trac
mailing list