Created
August 4, 2013 09:46
-
-
Save ovizii/6149900 to your computer and use it in GitHub Desktop.
Allow upload of more file types
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
| <?php //just need to research the type for each ending | |
| function addUploadMimes($mimes) { | |
| $mimes = array_merge($mimes, array( | |
| 'pdf|xls|tmPreferences' => 'application/octet-stream' | |
| )); | |
| return $mimes; | |
| } | |
| ?> | |
| add_filter('upload_mimes', 'addUploadMimes'); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment