Advertisement
GochiSiyan

hide admin bar

Oct 11th, 2021
50
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.17 KB | None | 0 0
  1. add_action('after_setup_theme', 'remove_admin_bar');
  2.  
  3. function remove_admin_bar() {
  4. if (!current_user_can('administrator') && !is_admin()) {
  5. show_admin_bar(false);
  6. }
  7. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement