欢迎访问服务器技术网-www.fuwuqijishu.com

WordPress如何让用户默认不显示工具栏?

软件 fuwuqijishu 2年前 (2022-10-01) 9次浏览 0个评论 扫描二维码

关于WordPress如何让用户默认不显示工具栏 的问题

wordpress为了方便管理员快速的从前台进入后台来管理网站在wordpress顶部强制加入了一个工具条(admin bar),而且默认是对所有用户都显示的,有时候看着挺烦心。那么怎么来去除这个烦人的工具条(admin bar)呢?下面小V上代码。
一、完全禁用工具条:
1、完全去除wordpress工具条(代码一)
    show_admin_bar(false);
2、完全去除wordpress工具条(代码二)
    add_filter(‘show_admin_bar’, ‘__return_false’);
2、只对特定用户显示工具条
 只对管理员显示
if (!current_user_can(‘manage_options’)) {
    add_filter(‘show_admin_bar’, ‘__return_false’);
}
只对管理员和编辑显示
if(!current_user_can(‘edit_posts’)) {
add_filter(‘show_admin_bar’, ‘__return_false’);
}
3、将工具条从顶部移至页脚
functionfb_move_admin_bar() {
echo’

body {
margin-top: -28px;
padding-bottom: 28px;
}
body。
admin-bar #wphead {
padding-top: 0;
}
body。admin-bar #footer {
padding-bottom: 28px;
}
#wpadminbar {
top: auto !important;
bottom: 0;
}
#wpadminbar 。
quicklinks 。menupop ul {
bottom: 28px;
}
‘;
}
// 如果你想让工具条显示在后台顶部,请删除这行代码
add_action( ‘admin_head’, ‘fb_move_admin_bar’);
//如果你想让工具条显示在前台顶部,请删除这行代码
add_action( ‘wp_head’, ‘fb_move_admin_bar’);
PS:以上代码都是加入到functions。
php中即可。

喜欢 (0)
发表我的评论
取消评论
表情 贴图 加粗 删除线 居中 斜体 签到

Hi,您需要填写昵称和邮箱!

  • 昵称 (必填)
  • 邮箱 (必填)
  • 网址

Warning: error_log(/www/wwwroot/fuwiqijishu/wp-content/plugins/spider-analyser/#log/log-2714.txt): failed to open stream: No such file or directory in /www/wwwroot/fuwiqijishu/wp-content/plugins/spider-analyser/spider.class.php on line 2900