Skip to main content
Login Join
Snippet · PHP

Remove Admin Bar for Non-Admins

Shared by Sumit singh · April 23, 2026

23 views
Back to Snippets
add_filter('show_admin_bar', function($show) {
    return current_user_can('administrator') ? $show : 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