Skip to main content

Remove admin bar for subscribers.

Home Forums WordPress Admin Customization Remove admin bar for subscribers.

Viewing 0 reply threads
  • Author
    Posts
    • #2403

      Layer7web
      Keymaster
      add_action( 'after_setup_theme', 'l7w_remove_admin_bar' );
      function l7w_remove_admin_bar() {
          if ( ! current_user_can( 'edit_posts' ) ) {
            show_admin_bar( false );
          }
      }
Viewing 0 reply threads

You must be logged in to reply to this topic.