Skip to content

Instantly share code, notes, and snippets.

@anandkumar
Created November 11, 2013 17:28
Show Gist options
  • Save anandkumar/7416952 to your computer and use it in GitHub Desktop.
Save anandkumar/7416952 to your computer and use it in GitHub Desktop.
Remove WordPress Admin bar
// Remove WordPress Admin bar
add_action('after_setup_theme', 'remove_admin_bar');
function remove_admin_bar() {
if (!current_user_can('administrator') && !is_admin()) {
show_admin_bar(false);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment