Advertisement
Guest User

Untitled

a guest
Sep 2nd, 2015
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.39 KB | None | 0 0
  1. /**
  2. * Hide password protected posts, for non-admins, in the case of 'edit-post' screen id
  3. */
  4. add_action( 'pre_get_posts', function( WP_Query $q )
  5. {
  6. $screen = get_current_screen();
  7.  
  8. if( is_admin()
  9. && ! current_user_can( 'manage_options' )
  10. && is_a( $screen, WP_Screen )
  11. && 'edit-post' === $screen->id
  12. )
  13. $q->set( 'has_password', false );
  14. } );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement