Skip to content

Instantly share code, notes, and snippets.

@cabans
Last active December 29, 2015 13:39
Show Gist options
  • Save cabans/7679199 to your computer and use it in GitHub Desktop.
Save cabans/7679199 to your computer and use it in GitHub Desktop.
Disable Wordpress top bar for all users, use in add_action('after_setup_theme')
// Disable Wordpress top bar for all users
if ( !is_admin() ) {
show_admin_bar(false);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment