Title: Remove WordPress admin bar
Last modified: May 23, 2022

---

# Remove WordPress admin bar

 *  Resolved [sandravmg](https://wordpress.org/support/users/sandravmg/)
 * (@sandravmg)
 * [4 years ago](https://wordpress.org/support/topic/remove-wordpress-admin-bar/)
 * Hi, we use your plugin to hide the Admin bar from some roles. After update it
   to Versión 3.2.1, the bar appears again and we can’t find how hide it. How can
   we hide the WordPress Admin bar?
 * The page I need help with: _[[log in](https://login.wordpress.org/?redirect_to=https%3A%2F%2Fwordpress.org%2Fsupport%2Ftopic%2Fremove-wordpress-admin-bar%2F%3Foutput_format%3Dmd&locale=en_US)
   to see the link]_

Viewing 1 replies (of 1 total)

 *  Plugin Author [Caseproof LLC](https://wordpress.org/support/users/caseproof/)
 * (@caseproof)
 * [4 years ago](https://wordpress.org/support/topic/remove-wordpress-admin-bar/#post-15677571)
 * Hi [@sandravmg](https://wordpress.org/support/users/sandravmg/)
 * In order to hide admin bar on front-end, you can use this code snippet and add
   it at the end of your theme’s functions.php file:
 *     ```
       add_action('init', function() {
         if(current_user_can('custom_role')) {
           show_admin_bar(false);
         }
       });
       ```
   
 * Hopefully, that helps.

Viewing 1 replies (of 1 total)

The topic ‘Remove WordPress admin bar’ is closed to new replies.

 * ![](https://ps.w.org/members/assets/icon-256x256.png?rev=3508404)
 * [Members - Membership & User Role Editor Plugin](https://wordpress.org/plugins/members/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/members/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/members/)
 * [Active Topics](https://wordpress.org/support/plugin/members/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/members/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/members/reviews/)

 * 1 reply
 * 2 participants
 * Last reply from: [Caseproof LLC](https://wordpress.org/support/users/caseproof/)
 * Last activity: [4 years ago](https://wordpress.org/support/topic/remove-wordpress-admin-bar/#post-15677571)
 * Status: resolved