How to Hide WordPress Admin Bar for Users Except Admin

Jun 27, 2018

Paste this code in your theme’s functions.php file

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

This answer is referred from WpBeginner