Skip to content

Instantly share code, notes, and snippets.

@luizbills
Created February 19, 2018 04:02
Show Gist options
  • Select an option

  • Save luizbills/9fd064c46ebcd7583b1639fcbabef549 to your computer and use it in GitHub Desktop.

Select an option

Save luizbills/9fd064c46ebcd7583b1639fcbabef549 to your computer and use it in GitHub Desktop.
Remover admin bar para todos exceto os administradores
add_action( 'after_setup_theme', 'lpb_remove_admin_bar' );
function lpb_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