Skip to content

Instantly share code, notes, and snippets.

@mateusneves
Created June 30, 2014 18:32
Show Gist options
  • Save mateusneves/fcb30975ca482836a796 to your computer and use it in GitHub Desktop.
Save mateusneves/fcb30975ca482836a796 to your computer and use it in GitHub Desktop.
Mime type extended, for upload files in WordPress
add_filter('upload_mimes', 'custom_upload_mimes');
function custom_upload_mimes ( $existing_mimes=array() ) {
// add the file extension to the array
$existing_mimes['cdr'] = 'mime/type';
// call the modified list of extensions
return $existing_mimes;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment