Skip to main content
Login Join
Snippet · PHP

Hide Admin Bar for Non-Admins

Shared by Darshit Rajyaguru · May 8, 2026 · @after_setup_theme

32 views
1 upvote
Back to Snippets

Hides the frontend admin toolbar for subscribers, customers, and other non-admin users.

add_action( 'after_setup_theme', 'wpfolks_hide_admin_bar' );
function wpfolks_hide_admin_bar() {
    if ( ! current_user_can( 'administrator' ) && ! is_admin() ) {
        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