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
Post a Comment