Change menu items labels in wordpress admin area? -


is there way change labels of menu items inside admin area? when register new custom post type when can specify every label it, default menu items.

thanks in advance!

add_filter( 'gettext', 'change_post_to_article' ); add_filter( 'ngettext', 'change_post_to_article' );  function change_post_to_article( $translated )  {       $translated = str_replace( 'post', 'article', $translated );     $translated = str_replace( 'post', 'article', $translated );     return $translated; } 

there way this, more info check answer.


Comments

Popular posts from this blog

Add email recipient to all new Trac tickets -

400 Bad Request on Apache/PHP AddHandler wrapper -

php - Change action and image src url's with jQuery -