Skip to content

Instantly share code, notes, and snippets.

@rubelmiah
Created January 26, 2023 06:31
Show Gist options
  • Save rubelmiah/3ef4f51110591aee1b63e64e35cde9c8 to your computer and use it in GitHub Desktop.
Save rubelmiah/3ef4f51110591aee1b63e64e35cde9c8 to your computer and use it in GitHub Desktop.
Beside administrator show only image media files.
<?php
/**
* Beside administrator show only image media files.
*
* @param [type] $query
* @return void
*/
function show_only_image_media_files( $query ) {
if ( ! current_user_can('administrator') ) {
$query['post_mime_type'] = 'image';
}
return $query;
}
add_filter( 'ajax_query_attachments_args', 'show_only_image_media_files' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment