Disable the Admin Bar

Step 1: Disable Admin Bar for All Users Except for Administrators

Add below code in function.php :

<?php add_action('after_setup_theme', 'remove_admin_bar');
 
function remove_admin_bar() {
if (!current_user_can('administrator') && !is_admin()) {
  show_admin_bar(false);
}
} ?>

 

Step 2: Disable Admin Bar for All Users

<?php show_admin_bar(false); ?>

Leave a Reply

Your email address will not be published. Required fields are marked *