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 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'),            
        ),
    ));
}

本文标签: Add admin page to the top of the admin panel