admin管理员组文章数量:1426509
I want to add a page to the admin panel of wordpress. If I want to link it into the menu on the left, I can use add_menu_page. But I want to add it to the top of the admin panel. How can I do this?
I want to add a page to the admin panel of wordpress. If I want to link it into the menu on the left, I can use add_menu_page. But I want to add it to the top of the admin panel. How can I do this?
Share Improve this question asked May 22, 2019 at 6:26 TahtuTahtu 1173 bronze badges1 Answer
Reset to default 0Try this code:
add_action('admin_bar_menu', 'wp_toolbar_custom_menu', 100);
function wp_toolbar_custom_menu($admin_bar){
$admin_bar->add_menu( array(
'id' => 'menu-item',
'title' => 'Menu Item',
'href' => '#',
'meta' => array(
'title' => __('Menu Item'),
),
));
}
本文标签: Add admin page to the top of the admin panel
版权声明:本文标题:Add admin page to the top of the admin panel 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1745474516a2659900.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论