Created
October 1, 2015 20:28
-
-
Save kodie/8096f7a32104304312c9 to your computer and use it in GitHub Desktop.
Allow additional file types to be uploaded to Wordpress
This file contains 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
<?php | |
function add_mime_types($mime_types) { | |
$mime_types['qbb'] = 'application/octet-stream'; | |
return $mime_types; | |
} | |
add_filter('upload_mimes', 'add_mime_types', 1, 1); | |
?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment