Hide the admin bar for non-admins

Hide the admin bar for non-admins

Sometimes, you don’t want that the WordPress Admin bar be visible for Editors, Authors and any other non-admin user.
If you want to hide the admin bar for non-admins you can just put these few lines in the functions.php file of your child-theme:
<?php
add_filter('show_admin_bar', function ($show) {
    return current_user_can('manage_options');
});

That’s simple!

Do you want more tips?