Disable the WordPress admin bar for non-admins

add_action('after_setup_theme', function () {
    if (! current_user_can('edit_posts')) {
        show_admin_bar(false);
    }
});