Skip to main content
FolksSpeakersPluginsThemesEventsSnippetsShippedCommunityResources
Login Join
Snippet · PHP

Remove WordPress Admin Bar for Non-Admin Users

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

1 copy
5 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 );
    }
} );