Advertisement
Guest User

Untitled

a guest
Aug 26th, 2019
99
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1. add_filter( 'ajax_query_attachments_args', 'show_current_user_attachments' );
  2.  
  3. function show_current_user_attachments( $query ) {
  4. $user_id = get_current_user_id();
  5. if ( $user_id ) {
  6. $query['author'] = $user_id;
  7. }
  8. return $query;
  9. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement