Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- /* Remove Admin Bar / ToolBar for Subscriber */
- function remove_admin_bar_for_subscriber() {
- $user = wp_get_current_user();
- if ( in_array( 'subscriber', (array) $user->roles ) ) {
- show_admin_bar( false );
- }
- }
- add_action('after_setup_theme', 'remove_admin_bar_for_subscriber');
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement