Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save developer-anuragsingh/e6d727edfc3c2251740ba982d5b7b711 to your computer and use it in GitHub Desktop.
Save developer-anuragsingh/e6d727edfc3c2251740ba982d5b7b711 to your computer and use it in GitHub Desktop.
// Ref - https://codex.wordpress.org/Plugin_API/Filter_Reference/ajax_query_attachments_args
add_filter( 'ajax_query_attachments_args', 'show_current_user_attachments', 10, 1 );
function show_current_user_attachments( $query = array() ) {
$user_id = get_current_user_id();
if( $user_id ) {
$query['author'] = $user_id;
}
return $query;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment