Skip to content

Instantly share code, notes, and snippets.

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 everaldomatias/acb5e543e2d075ef597e368d04b6da03 to your computer and use it in GitHub Desktop.
Save everaldomatias/acb5e543e2d075ef597e368d04b6da03 to your computer and use it in GitHub Desktop.
// WordPress
// Use in functions.php
// Disable the admin bar except for admin users
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