Skip to content

Instantly share code, notes, and snippets.

@jpmarchand
Last active January 29, 2017 02:31
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jpmarchand/ce8e50809936abc42efe to your computer and use it in GitHub Desktop.
Save jpmarchand/ce8e50809936abc42efe to your computer and use it in GitHub Desktop.
Disable WordPress admin bar for all users except for administrators. Source: http://www.wpbeginner.com/wp-tutorials/how-to-disable-wordpress-admin-bar-for-all-users-except-administrators/
<?php
//* Disable WordPress admin bar for all users except for administrators
function customprefix_remove_admin_bar() {
if (!current_user_can('administrator') && !is_admin()) {
show_admin_bar(false);
}
}
add_action('after_setup_theme', 'customprefix_remove_admin_bar');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment