Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save netdesignr/fa54bedd5ae4ebee89dc5bba64db0f08 to your computer and use it in GitHub Desktop.
Save netdesignr/fa54bedd5ae4ebee89dc5bba64db0f08 to your computer and use it in GitHub Desktop.
Remove admin toolbar for all users except for Administrators
// Remove admin toolbar for all users except for Administrators
function remove_admin_bar() {
if (!current_user_can('administrator') && !is_admin()) {
show_admin_bar(false);
}
}
add_action('after_setup_theme', 'remove_admin_bar');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment