在下面的主题管理菜单中,“MyTheme菜单标签”在侧栏菜单上复制了两次,一次用于主菜单链接,另一次用于第一个子菜单链接。
如何删除链接的第二个实例
add_menu_page(
"MyTheme",
"MyTheme Menu Label", //THIS IS REPEATED TWICE IN THE MENU
"edit_themes",
"functions.php",
\'theme_admin\',
get_bloginfo(\'template_directory\') .\'/img/favicon.png\',31
);
add_submenu_page(
\'functions.php\',
"SEO Options",
"SEO",
\'edit_themes\',
\'my-seo-options\',
\'theme_admin\'
);
add_submenu_page(
\'functions.php\',
"Misc Options",
"Misc",
\'edit_themes\',
\'my-misc-options\',
\'theme_admin\'
);
//etc...