Skip to content

Instantly share code, notes, and snippets.

@mps
Created June 19, 2012 19:46
Show Gist options
  • Save mps/2956133 to your computer and use it in GitHub Desktop.
Save mps/2956133 to your computer and use it in GitHub Desktop.
Hide the WordPress admin bar in two lines of code
add_filter( 'show_admin_bar', '__return_false' );
@tommcfarlin
Copy link

On one line:

add_filter( 'show_admin_bar', '__return_false' );

@mps
Copy link
Author

mps commented Jun 19, 2012

nice @tommcfarlin will update

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment