Skip to content

Instantly share code, notes, and snippets.

@Inzman
Created August 14, 2019 09:15
Show Gist options
  • Select an option

  • Save Inzman/dc6015d2381cad0075a16fc2e69eeb17 to your computer and use it in GitHub Desktop.

Select an option

Save Inzman/dc6015d2381cad0075a16fc2e69eeb17 to your computer and use it in GitHub Desktop.
Wordpress - Manage Your Media Only in admin
add_filter( 'ajax_query_attachments_args', 'show_current_user_attachments' );
function show_current_user_attachments( $query ) {
$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