删除管理栏新的帖子/链接/媒体子菜单


10

我希望删除管理栏中添加新菜单下的post / link / media子菜单。我可以删除整个菜单,但实际上我只想删除子菜单的

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

Answers:


16

请参阅管理栏的remove_node函数:

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

我的插件中有代码,我也尝试调用-全局$ wp_admin_bar; 插入功能
Keith

@Keith,经过了代码测试,现在可以工作。
brasofilo 2012年
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.