Rename the label of a plugin in the sidebar admin
-
Hello everyone,
I can rename in functions.php, the name of a plug-in appears in the sidebar?I tried with:
function rename_admin_menu_items( $menu ) { $menu = str_ireplace( 'Articoli', 'Blog', $menu ); return $menu; } add_filter('gettext', 'rename_admin_menu_items'); add_filter('ngettext', 'rename_admin_menu_items');
But it only works with the standard label WordPress.
Thanks.
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
- The topic ‘Rename the label of a plugin in the sidebar admin’ is closed to new replies.