Last active
April 11, 2019 06:01
-
-
Save WordPress-Handbuch/6613979c75413e469f229f8fad6883d2 to your computer and use it in GitHub Desktop.
Add more mimetypes for WordPress' upload functionality
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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