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?
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 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' );
In your functions.php file, you can add one of the following code snippets to get the indicated results:
// Only display to administrators
add_action('after_setup_theme', 'remove_admin_bar');
function remove_admin_bar() {
if (!current_user_can('administrator') && !is_admin()) {
show_admin_bar(false);
}
}