Advertisement
Guest User

Untitled

a guest
Mar 20th, 2019
62
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.35 KB | None | 0 0
  1. function posts_for_current_author($query) {
  2. global $pagenow;
  3.  
  4. if( 'edit.php' != $pagenow || !$query->is_admin )
  5. return $query;
  6.  
  7. if( !current_user_can( 'manage_options' ) ) {
  8. global $user_ID;
  9. $query->set('author', $user_ID );
  10. }
  11. return $query;
  12. }
  13. add_filter('pre_get_posts', 'posts_for_current_author');
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement