Skip to content

Instantly share code, notes, and snippets.

@mps
Created June 19, 2012 19:46
Show Gist options
  • Select an option

  • Save mps/2956133 to your computer and use it in GitHub Desktop.

Select an option

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
Copy Markdown

On one line:

add_filter( 'show_admin_bar', '__return_false' );

@mps

mps commented Jun 19, 2012

Copy link
Copy Markdown
Author

nice @tommcfarlin will update

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