skip to Main Content

Search WordPress Code Snippets – Quick Solutions for Developers


How to Disable the WordPress Admin Bar for Specific User Roles

Hide the admin bar for subscribers or any other role.

add_action('after_setup_theme', 'codebykp_disable_admin_bar_for_subscribers');
function codebykp_disable_admin_bar_for_subscribers() {
    if (current_user_can('subscriber')) {
        show_admin_bar(false);
    }
}


I’m a WordPress developer with 10+ years of experience in WooCommerce and custom plugins. I combine technical expertise with design flair to help you create standout, user-friendly websites. Let’s transform your digital presence!

Back To Top