Skip to content

Instantly share code, notes, and snippets.

@dcooney
Created April 15, 2014 18:13
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 dcooney/10754700 to your computer and use it in GitHub Desktop.
Save dcooney/10754700 to your computer and use it in GitHub Desktop.
WP Hide admin bar for subscribers
//Hide admin bar
// Place in functions.php
global $current_user;
get_currentuserinfo();
if ( user_can( $current_user, "subscriber" ) ){
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