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
1 Answer
Reset to default 22See 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
1 Answer
Reset to default 22See 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
版权声明:本文标题:remove admin bar new postlinkmedia sub menu 内容由热心网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:https://it.en369.cn/questions/1749121490a2319084.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。


发表评论