最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

Add admin page to the top of the admin panel

programmeradmin1浏览0评论

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 badges
Add a comment  | 

1 Answer 1

Reset to default 0

Try 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'),            
        ),
    ));
}
发布评论

评论列表(0)

  1. 暂无评论