How to remove that pesky WordPress Bar

We’ve all had it.
Install WordPress and you get that lovely admin bar that surves no purpose at all.
2 options.

  • Install a plugin (the horrible option)
  • Add a lovely bit of code (the nice option)
function my_function_admin_bar(){
return false;
}
add_filter( 'show_admin_bar' , 'my_function_admin_bar');

YAyy all gone.

Leave a Comment