abdulawal39

Remove Admin Bar in Buddypress/WordPress

Mar 28th, 2015
207
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.15 KB | None | 0 0
  1. function u_remove_admin_bar() {
  2.     if( !is_super_admin() )
  3.         add_filter( 'show_admin_bar', '__return_false' );
  4. }
  5. add_action('wp', 'u_remove_admin_bar');
Add Comment
Please, Sign In to add comment