Skip to content

Instantly share code, notes, and snippets.

@adamstac
Created July 31, 2013 15:05
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 adamstac/6122773 to your computer and use it in GitHub Desktop.
Save adamstac/6122773 to your computer and use it in GitHub Desktop.
Hide WordPress toolbar for non-admins
<?php
//
// Hide WordPress toolbar for non-admins
//
if ( !current_user_can('administrator') ) {
show_admin_bar(false);
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment