Created
November 1, 2013 22:52
-
-
Save dovy/7273263 to your computer and use it in GitHub Desktop.
Add to your functions.php
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 | |
function custom_upload_mimes ( $existing_mimes=array() ) { | |
// Add *.EPS files to Media upload | |
$existing_mimes['eps'] = 'application/postscript'; | |
return $existing_mimes; | |
} | |
add_filter('upload_mimes', 'custom_upload_mimes'); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment