How do I remove the WP Admin bar for non-admin users in WordPress?


add_action('after_setup_theme', 'wpsc_remove_admin_bar');
function wpsc_remove_admin_bar() {
if (!current_user_can('administrator') && !is_admin()) {
  show_admin_bar(false);
}
}

Subscribe To Our Newsletter

Join our mailing list to receive the latest news and updates from our team.

You have Successfully Subscribed!

Share This