Skip to content

Instantly share code, notes, and snippets.

@taricco
Created June 18, 2020 21:10
Show Gist options
  • Select an option

  • Save taricco/200d838e8490f7d29415ad258f95e746 to your computer and use it in GitHub Desktop.

Select an option

Save taricco/200d838e8490f7d29415ad258f95e746 to your computer and use it in GitHub Desktop.
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