Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Select an option

  • Save wbcomdev/c850477e52efbdfa592f4e186ba64952 to your computer and use it in GitHub Desktop.

Select an option

Save wbcomdev/c850477e52efbdfa592f4e186ba64952 to your computer and use it in GitHub Desktop.
<?php
/**
* Disable admin bar for some user roles.
*/
function wbcom_disable_admin_bar_for_some_user_roles() {
if ( current_user_can( 'customer' ) || current_user_can( 'contributor' ) ) {
show_admin_bar( false );
}
}
add_action( 'after_setup_theme', 'wbcom_disable_admin_bar_for_some_user_roles' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment