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 );
}
} );