Created
June 7, 2021 12:12
-
-
Save wbcomdev/c850477e52efbdfa592f4e186ba64952 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?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