Skip to content

Instantly share code, notes, and snippets.

@zarei-dev
Last active June 19, 2022 16:14
Show Gist options
  • Save zarei-dev/f5ace2bd3162ca42c6a6fe998dfa2263 to your computer and use it in GitHub Desktop.
Save zarei-dev/f5ace2bd3162ca42c6a6fe998dfa2263 to your computer and use it in GitHub Desktop.
Change allowed mime_types in WordPress conditionally with plupload
<?php
add_filter( 'plupload_init', function( $plupload_init ) {
if ( isset($_GET['page']) && $_GET['page'] == 'vod-videos-add') {
$plupload_init['filters']['mime_types'] = [
array(
'title' => 'Videos',
'extensions' => 'mp4,mov,m4v',
'mime_types' => 'video/mp4,video/quicktime,video/x-m4v',
)
];
}
return $plupload_init;
} );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment