Advertisement
meetsos

Hide Admin Bar for non Admins

Dec 17th, 2016
186
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.20 KB | None | 0 0
  1. <?php
  2. function bs_hide_admin_bar() {
  3.     if (!current_user_can('administrator') && !is_admin()) {
  4.         show_admin_bar(false);
  5.     }
  6. }
  7. add_action('after_setup_theme', 'bs_hide_admin_bar');
  8. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement