WordPress page for show_admin_bar
表示:
无法关闭WordPress仪表板上的工具栏
然而,这个技巧是有效的
function remove_admin_bar() { ?>
<style type="text/css">
body {
margin-top: -28px;
}
body.admin-bar #wphead {
padding-top: 0;
}
#wpadminbar {
display: none;
}
</style>
<?php }
add_action( \'admin_head\', \'remove_admin_bar\' );
为了从管理栏中删除某些菜单,请使用
$wp_admin_bar->remove_menu($id);
哪里
$id
可以在Chrome开发工具中找到特定菜单的。每个菜单\'
<li>
开发工具中的id格式为
wp-admin-bar-{id}
, 例如,“注释”菜单具有id
wp-admin-bar-comments
. 所以要删除这个菜单代码应该是这样的,
// remove links/menus from the admin bar
function my_admin_bar_render() {
global $wp_admin_bar;
$wp_admin_bar->remove_menu(\'comments\');
// Code to remove other items goes here
....
....
}
add_action( \'wp_before_admin_bar_render\', \'my_admin_bar_render\' );