Skip to content

Instantly share code, notes, and snippets.

@aderaaij
Last active December 28, 2015 06:39
Show Gist options
  • Save aderaaij/7459148 to your computer and use it in GitHub Desktop.
Save aderaaij/7459148 to your computer and use it in GitHub Desktop.
Hide admin-bar from front-end (add to functions.php)
function hide_admin_bar_from_front_end(){
if (is_blog_admin()) {
return true;
}
return false;
}
add_filter( 'show_admin_bar', 'hide_admin_bar_from_front_end');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment