remove admin bar new postlinkmedia sub menu

admin2025-06-05  1

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' );
}
转载请注明原文地址:http://conceptsofalgorithm.com/Algorithm/1749121514a316546.html

最新回复(0)