The WPFolks app is out on iPhone. Free, no ads. Download on the App Store
Skip to main content
Login Join
Snippet · PHP

Remove WordPress Admin Bar for Non-Admin Users

Shared by Pritam Sonone · May 1, 2026 · @after_setup_theme

2 copies
50 views
1 upvote
Back to Snippets

Hides the WordPress admin bar for all users who are not administrators. Useful when you have subscribers, contributors, or custom roles on your site and you want a clean front-end experience for them without the toolbar getting in the way.

add_action( 'after_setup_theme', function() {
    if ( ! current_user_can( 'administrator' ) ) {
        show_admin_bar( false );
    }
} );
Know a different way to do this? Add your approach as a variation so folks can compare them side by side.
Submit a variation

0 comments