本文介绍了为除 admin 之外的所有用户禁用管理栏的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我已经安装了 WordPress 和 BudyPress.我想禁用所有用户显示在顶部的管理栏.
I have installed WordPress and BudyPress. I want to disable the admin bar which appears on the top for all users.
谁能告诉我如何正确地做到这一点?
Can somebody tell me how to do that correctly?
推荐答案
function is_current_user_administrator() {
global $current_user;
return !in_array( 'administrator', $current_user->roles );
}
add_filter( 'show_admin_bar', 'is_current_user_administrator' );
这篇关于为除 admin 之外的所有用户禁用管理栏的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!