/**
* Changes Label of Admin Menu items
* @global array $menu
* @global array $submenu
*/
function change_post_menu_label() {
global $menu;
global $submenu;
$menu[2][0] = \'Home\';
$menu[5][0] = \'Articles\';
$submenu[\'edit.php\'][5][0] = "All Articles";
// var_dump($submenu);
// var_dump($menu);
echo \'\';
}
if(!is_super_admin()){
add_action( \'admin_menu\', \'change_post_menu_label\' );
}
可以打印阵列
echo "<pre>";
print_r($menu);
echo "</pre>"; //remove this code after, it is just used to check the index of element in Menu to rename it.
并查看元素索引以更改要重命名的任何项目的名称。就像上面的功能一样,我将菜单中的“帖子”重命名为“文章”。
要重命名菜单项的子项,请使用
$submenu
阵列。用于将仪表板重命名为“主页”
$menu[2][0] = \'Home\';
将此行添加到上一个函数中,确认仪表板的$菜单数组中的索引“2”。