Remove Admin Bar for Non-Admins
Hides the admin bar for all users except administrators
PHP
if (!current_user_can('manage_options')) {
add_filter('show_admin_bar', '__return_false');
}
Snippet Feedback
Did this snippet work for you? Do you have any questions about this snippet? Leave some feedback below.
SHARED BY