Skip to content

Instantly share code, notes, and snippets.

@carlodaniele
Last active February 27, 2016 06:23
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 carlodaniele/1277236d434068a30311 to your computer and use it in GitHub Desktop.
Save carlodaniele/1277236d434068a30311 to your computer and use it in GitHub Desktop.
Remove WordPress Toolbar for non-admin users
<?php
/**
* Remove WordPress Toolbar for subscribers
*/
function myplugin_remove_admin_bar() {
if ( ! current_user_can( 'publish_posts' ) ) {
show_admin_bar( false );
}
}
add_action( 'plugins_loaded', 'myplugin_remove_admin_bar' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment