Skip to content

Instantly share code, notes, and snippets.

@shizhua
Created August 24, 2015 13:54
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save shizhua/5b983c94dfc073b3555b to your computer and use it in GitHub Desktop.
Save shizhua/5b983c94dfc073b3555b to your computer and use it in GitHub Desktop.
Hide the admin bar in wordpress
<?php
add_filter( 'show_admin_bar', '__return_false' );
remove_action( 'wp_footer', 'wp_admin_bar_render', 1000 );
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment