admin管理员组文章数量:1418151
I have added an admin menu using add_menu_page. When there is a sub menu with add_submenu_page,
The main menu name is repeating. How to remove this repeating menu ?
This is my code
add_action('admin_menu', 'add_my_menu');
function add_my_menu(){
add_menu_page( 'Main Menu', 'Main Menu', 'manage_options', 'main-menu-settings', 'main_menu_settings');
add_submenu_page( 'main-menu-settings', 'Sub Menu', 'sub menu', 'manage_options', 'sub-menu', 'sub_menu_settings');
}
I have added an admin menu using add_menu_page. When there is a sub menu with add_submenu_page,
The main menu name is repeating. How to remove this repeating menu ?
This is my code
add_action('admin_menu', 'add_my_menu');
function add_my_menu(){
add_menu_page( 'Main Menu', 'Main Menu', 'manage_options', 'main-menu-settings', 'main_menu_settings');
add_submenu_page( 'main-menu-settings', 'Sub Menu', 'sub menu', 'manage_options', 'sub-menu', 'sub_menu_settings');
}
Share
Improve this question
edited Jul 3, 2014 at 6:21
Dinoop
asked Jul 2, 2014 at 12:07
DinoopDinoop
1113 bronze badges
1
- 1 Please add your code to the question for easily reproducible example. – Rarst Commented Jul 2, 2014 at 12:14
1 Answer
Reset to default 0You can remove it from the submenu array:
function add_my_menu(){
global $submenu;
add_menu_page( 'Main Menu', 'Main Menu', 'manage_options', 'main-menu-settings', 'main_menu_settings');
add_submenu_page( 'main-menu-settings', 'Sub Menu', 'sub menu', 'manage_options', 'sub-menu', 'sub_menu_settings');
unset( $submenu['main-menu-settings'][0] );
}
The parent item is added by add_submenu_page
in plugin.php
as the first link if the parent doesn't already have a submenu, resulting in:
[main-menu-settings] => Array
(
[0] => Array
(
[0] => Main Menu
[1] => manage_options
[2] => main-menu-settings
[3] => Main Menu
[4] => menu-top menu-icon-generic toplevel_page_main-menu-settings
[5] => toplevel_page_main-menu-settings
[6] => dashicons-admin-generic
)
[1] => Array
(
[0] => sub menu
[1] => manage_options
[2] => sub-menu
[3] => Sub Menu
)
)
being added to $submenu
.
I assume that UI decision is along the lines of Don't Make Me Think. All the menu links are grouped in the same place so the user doesn't have to remember to click the parent link in the sidebar to go to the main page for that section. So the primary purpose of that parent link in the sidebar is to open the submenu.
If the user is hovering over the submenu trying to determine which page to go to, and the main page is not listed, they might not think to click on the parent link in the sidebar.
Since every other WordPress menu works that way, consider leaving it as is.
Another option is to make it more descriptive.
global $submenu;
$submenu['main-menu-settings'][0][0] = "My Plugin Main Menu";
本文标签: pluginsHow to remove admin main menu name repetition
版权声明:本文标题:plugins - How to remove admin main menu name repetition 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1745269023a2650776.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论