58

How to Remove Admin Bar for All Users Except Admins in WordPress

Powered by WPCodeBox

Learn how to easily remove the WordPress admin bar for all users except administrators. This guide helps you manage user access and optimize your WordPress site.


<?php

add_filter('show_admin_bar',function( $show_admin_bar ) {
    if(!current_user_can('manage_options')) {
        return false;
    }
    return $show_admin_bar;
});
We also have a video in which we use this snippet:

Other Snippets

WPCodeBox is a WordPress Code Snippets Manager that allows you to share your WordPress Code Snippets across your sites.