Skip to content

Instantly share code, notes, and snippets.

@Cathrin-Demyokhina
Created October 13, 2017 07:40
Show Gist options
  • Save Cathrin-Demyokhina/dec28560fea3b54e392be236e6e1d55a to your computer and use it in GitHub Desktop.
Save Cathrin-Demyokhina/dec28560fea3b54e392be236e6e1d55a to your computer and use it in GitHub Desktop.
WP disable top bar menu for all users except admin
//Paste this code in your theme’s functions.php file
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