Advertisement
arie_cristianD

hide wp admin bar for subscriber

Apr 16th, 2024
113
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.18 KB | None | 0 0
  1. add_filter(
  2.     'show_admin_bar',
  3.     function () {
  4.         if ( current_user_can( 'edit_post' ) || current_user_can( 'edit_themes' ) ) {
  5.             return true;
  6.         } else {
  7.             return false;
  8.         }
  9.     }
  10. );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement