Skip to content

Instantly share code, notes, and snippets.

@makbeta
Created June 24, 2013 20:30
Show Gist options
  • Save makbeta/5853348 to your computer and use it in GitHub Desktop.
Save makbeta/5853348 to your computer and use it in GitHub Desktop.
WordPress: Disable admin toolbar for all subscribers
<?php
/* Place the following piece of code in (init function of) your functions.php */
if(current_user_can('subscriber')) {
show_admin_bar(false);
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment