Skip to content

Instantly share code, notes, and snippets.

@carlodaniele
Last active February 18, 2016 19:16
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/2482f0d01e3e86817a04 to your computer and use it in GitHub Desktop.
Save carlodaniele/2482f0d01e3e86817a04 to your computer and use it in GitHub Desktop.
Remove WordPress Toolbar for non-admin users
<?php
/**
* Remove WordPress Toolbar for all users except admins and editors
*
*/
function mytheme_remove_admin_bar() {
if ( ! current_user_can( 'publish_posts' ) ) {
show_admin_bar( false );
}
}
add_action( 'after_setup_theme', 'mytheme_remove_admin_bar' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment