Guest User

Untitled

a guest
Apr 25th, 2018
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. <?php
  2. //* Add this to your functions.php file. Do NOT include the opening php tag
  3.  
  4. //* Hide the admin bar from anyone who can't edit posts
  5. add_action('set_current_user', 'ab_hide_admin_bar');
  6. function ab_hide_admin_bar() {
  7. if (!current_user_can('edit_posts')) {
  8. show_admin_bar(false);
  9. }
  10. }
Add Comment
Please, Sign In to add comment