15

How to Remove the WordPress Admin Bar on the Frontend

Powered by WPCodeBox

Hide the WordPress admin bar on the frontend for all users with this code snippet, saving you the hassle of manual disabling.


<?php
add_filter('show_admin_bar',function() {
    return current_user_can('manage_options');
});

//Another version
add_filter( 'show_admin_bar', '__return_false' );
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.