Is there any code somewhere were I can easy edit the labels in the wordpress admin menu?
I want to change the text "Features" to "Bildspel" for example.
I have tried many solutions but can only rename the standard wordpress menu items.
function edit_admin_menus() {
global $menu;
$menu[8][0] = 'Recipes'; // Change Posts to Recipes
}
add_action( 'admin_menu', 'edit_admin_menus' );
Tnx











