Disable the admin bar for all users except admin
问题 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? 回答1: function sushil_return_false() { global $current_user; // return "false" for all users that do not have the "administrator" role if( !in_array('administrator',$current_user->roles) ) { return false; } else { return true; } } add_filter( 'show_admin_bar', 'sushil_return_false' ); 回答2: In your functions.php file, you can add one of