Remove WordPress Admin Bar Showing On Website

The new wordpress admin bar is a cool feature introduced in the newer wordpress versions.

5788165860 27f4b97028 Remove WordPress Admin Bar Showing On Website

However for some reasons you don’t like it ant want to get rid of it, here is what you can do.

Just put these two lines into function.php file of your theme.

/* Disable the Admin Bar. */
add_filter( 'show_admin_bar', '__return_false' );
remove_action( 'personal_options', '_admin_bar_preferences' );

Save the file, and refresh your page. You will not see the admin bar.

Tags: ,

Leave a Reply

Your email address will not be published. Required fields are marked *

*
*