How to Hide/Disable the WordPress Admin Bar?

WordPress

If you’re using WordPress, you may have noticed that an admin bar appears at the top of your site when you’re logged in. While this bar is useful for quick access to the WordPress dashboard, sometimes it can be distracting or unnecessary, especially if you’re not an admin or just want a clean frontend view.

In this post, I’ll show you how to easily hide or disable the WordPress admin bar, either for everyone or specific users.


Why You Might Want to Hide the Admin Bar?

The WordPress admin bar is great for quick access to various features like editing posts, accessing your dashboard, and more. However, there are situations where you may want to hide it, such as:

  • Non-Admin Users: If you want to remove the admin bar for certain users who don’t need to see it.
  • Cleaner Site: If you prefer a clutter-free browsing experience when you’re logged in.
  • Client Sites: If you’re working on a site for a client and want to hide the admin bar to avoid confusion.

Method 1: Hide the Admin Bar for All Users (Except Admins)

You can hide the admin bar for everyone except administrators by using a simple snippet of code. Here’s how:

Step 1: Access Your Theme’s functions.php File

  1. Go to your WordPress Dashboard.
  2. Navigate to Appearance > Theme Editor.
  3. In the right sidebar, find and select the functions.php file.

Step 2: Add the Code

At the bottom of the file, add this code:

// Disable the WordPress Admin Bar for all users except administrators
if (!current_user_can('administrator')) {
add_filter('show_admin_bar', '__return_false');
}

Step 3: Save Changes

Click Update File to save your changes.

Now, the admin bar will be hidden for everyone except admins!


Method 2: Hide the Admin Bar for Specific Users

If you want to hide the admin bar only for specific users, you can do that by modifying the code slightly.

Step 1: Add the Code to functions.php

Go to your functions.php file and add the following code:

// Disable the Admin Bar for specific users
function disable_admin_bar_for_users($show_admin_bar) {
// List of user IDs you want to hide the admin bar for
$user_ids_to_hide = array(2, 3, 5); // Change these to the user IDs you want to target
if (in_array(get_current_user_id(), $user_ids_to_hide)) {
return false;
}
return $show_admin_bar;
}
add_filter('show_admin_bar', 'disable_admin_bar_for_users');

Step 2: Save Changes

Click Update File to save your changes.

Now, the admin bar will be hidden only for the specific users you’ve listed in the $user_ids_to_hide array. Just replace the user IDs with the ones you want to target.


Method 3: Hide the Admin Bar from Your User Profile

If you only want to hide the admin bar for your own account, WordPress has an option built-in. Here’s how to do it:

Step 1: Edit Your Profile

  1. Go to your WordPress Dashboard.
  2. Navigate to Users > Your Profile.
  3. Scroll down to the Toolbar section.
  4. Uncheck the box next to “Show Toolbar when viewing site”.

Step 2: Save Changes

Click the Update Profile button to save your changes.

Now, the admin bar will be hidden when you’re logged in, but this setting only applies to your own account.


Method 4: Use a Plugin to Hide the Admin Bar

If you prefer not to deal with code, there are plugins available that can help you hide or disable the admin bar easily. Here’s how:

Step 1: Install a Plugin

  1. Go to Plugins > Add New.
  2. Search for “Hide Admin Bar” or “Disable Admin Bar”.
  3. Choose a plugin that fits your needs and click Install Now and then Activate.

Step 2: Configure the Plugin

Once activated, you can go to the plugin’s settings page (usually under Settings or in the Plugins menu) and configure who can see the admin bar and who can’t. Most plugins offer a simple on/off toggle for this feature.


Conclusion

Hiding or disabling the WordPress admin bar is easy, and you have several options depending on your needs. Whether you prefer to use code or a plugin, you can hide the admin bar for specific users or completely remove it for a cleaner experience.

Choose the method that works best for you, and enjoy a more streamlined WordPress interface!