Skip to content

Instantly share code, notes, and snippets.

@monecchi
Forked from dovy/epsforwordpress.php
Created March 2, 2018 00:27
Show Gist options
  • Save monecchi/8b9b15e6835eb190528c8cebe4efdc88 to your computer and use it in GitHub Desktop.
Save monecchi/8b9b15e6835eb190528c8cebe4efdc88 to your computer and use it in GitHub Desktop.
Add to your functions.php
<?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