Skip to content

Instantly share code, notes, and snippets.

@ekka21
Created June 12, 2012 19:08
Show Gist options
  • Save ekka21/2919479 to your computer and use it in GitHub Desktop.
Save ekka21/2919479 to your computer and use it in GitHub Desktop.
Wordpress: Add/Remove MineType
//Add mineType
add_filter('upload_mimes','add_custom_mime_types');
function add_custom_mime_types($mimes){
return array_merge($mimes,array (
'ac3' => 'audio/ac3',
'mpa' => 'audio/MPA',
'flv' => 'video/x-flv'
));
}
//Remove mineType
add_filter('upload_mimes','remove_mime_types');
function remove_mime_types($mimes){
unset( $existing_mimes['mp4'] );
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment