admin管理员组

文章数量:1130349

I wish to remove the sub menus of post/link/media under the add new menu in the admin bar. I can remove the entire menu but I actually only want to remove the sub menu's

$wp_admin_bar->remove_menu('my-account-with-avatar');

I wish to remove the sub menus of post/link/media under the add new menu in the admin bar. I can remove the entire menu but I actually only want to remove the sub menu's

$wp_admin_bar->remove_menu('my-account-with-avatar');
Share Improve this question asked Dec 19, 2012 at 20:03 KeithKeith 1931 gold badge2 silver badges7 bronze badges
Add a comment  | 

1 Answer 1

Reset to default 22

See the Admin Bar remove_node function:

add_action( 'admin_bar_menu', 'remove_wp_nodes', 999 );

function remove_wp_nodes() 
{
    global $wp_admin_bar;   
    $wp_admin_bar->remove_node( 'new-post' );
    $wp_admin_bar->remove_node( 'new-link' );
    $wp_admin_bar->remove_node( 'new-media' );
}

I wish to remove the sub menus of post/link/media under the add new menu in the admin bar. I can remove the entire menu but I actually only want to remove the sub menu's

$wp_admin_bar->remove_menu('my-account-with-avatar');

I wish to remove the sub menus of post/link/media under the add new menu in the admin bar. I can remove the entire menu but I actually only want to remove the sub menu's

$wp_admin_bar->remove_menu('my-account-with-avatar');
Share Improve this question asked Dec 19, 2012 at 20:03 KeithKeith 1931 gold badge2 silver badges7 bronze badges
Add a comment  | 

1 Answer 1

Reset to default 22

See the Admin Bar remove_node function:

add_action( 'admin_bar_menu', 'remove_wp_nodes', 999 );

function remove_wp_nodes() 
{
    global $wp_admin_bar;   
    $wp_admin_bar->remove_node( 'new-post' );
    $wp_admin_bar->remove_node( 'new-link' );
    $wp_admin_bar->remove_node( 'new-media' );
}

本文标签: remove admin bar new postlinkmedia sub menu