Skip to content

Instantly share code, notes, and snippets.

@WordPress-Handbuch
Last active April 11, 2019 06:01
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save WordPress-Handbuch/6613979c75413e469f229f8fad6883d2 to your computer and use it in GitHub Desktop.
Save WordPress-Handbuch/6613979c75413e469f229f8fad6883d2 to your computer and use it in GitHub Desktop.
Add more mimetypes for WordPress' upload functionality
function wh_add_various_mime_types( $mime_types ) {
$mime_types['midi'] = 'audio/midi';
$mime_types['psd'] = 'image/vnd.adobe.photoshop';
return $mime_types;
}
add_filter( 'upload_mimes', 'wh_add_various_mime_types', 1, 1 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment