Guest User

Untitled

a guest
Dec 16th, 2017
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.31 KB | None | 0 0
  1. /**
  2. * Disable admin bar on the frontend of your website
  3. * for subscribers.
  4. * Add this to <them>/functions.php
  5. */
  6. function functionsphp_disable_admin_bar() {
  7. if( ! current_user_can('edit_posts') )
  8. add_filter('show_admin_bar', '__return_false');
  9. }
  10. add_action( 'after_setup_theme', 'functionsphp_disable_admin_bar' );
Add Comment
Please, Sign In to add comment