Advertisement
Guest User

Untitled

a guest
Oct 19th, 2019
89
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.19 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