Skip to content

Instantly share code, notes, and snippets.

@Antoinebr
Created December 1, 2015 10:28
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 Antoinebr/eea4f99d851debf45c0d to your computer and use it in GitHub Desktop.
Save Antoinebr/eea4f99d851debf45c0d to your computer and use it in GitHub Desktop.
Cache la barre d'admin WP aux non-admin
<?php
if ( is_user_logged_in() && ! current_user_can( 'manage_options' ) ) {
add_filter('show_admin_bar','__return_false');
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment