要禁用(或者在我下面用代码显示的情况下,隐藏)后端的adminbar,可以使用以下代码段。
请始终备份functions.php
编辑/添加代码之前。
我还添加了一个功能,以便管理员仍然可以看到adminbar
(如果愿意,可以通过删除!current_user_can( \'manage_options\' ) &&
或者你想用它做什么(看here 对于其他角色/功能,请稍加了解)
/**
* Hide the Toolbar(adminbar) in the back-end using CSS
*
* @version WP 4.8
* Read more {@link https://codex.wordpress.org/Roles_and_Capabilities#Capabilities}
* {@link https://codex.wordpress.org/Function_Reference/is_admin}
* {@link https://codex.wordpress.org/Function_Reference/current_user_can}
*/
if ( !current_user_can( \'manage_options\' ) && is_admin() )
{
function wpse271937_hide_adminbar()
{
?>
<style>
#wpadminbar {
display: none;
}
#wpwrap {
top: -30px;/** change to own preference */
}
</style>
<?php
}
add_action(\'admin_head\', \'wpse271937_hide_adminbar\');
}
要自定义adminbar,我将其留给您自己的首选项,但您一定可以查看一下
here 或者在
Codex 本身
再看看这些: