Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- //hide admin bar
- add_action( 'init', 'remove_admin_bar_user', 10001 );
- function remove_admin_bar_user() {
- if ( current_user_can( 'administrator' ) || is_admin() ) {
- show_admin_bar( true );
- } else {
- show_admin_bar( false );
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement