Skip to content

Instantly share code, notes, and snippets.

@mehranhadidi
Created November 25, 2019 14:31
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mehranhadidi/97364a0f76c75778df8d666c83a8bfd1 to your computer and use it in GitHub Desktop.
Save mehranhadidi/97364a0f76c75778df8d666c83a8bfd1 to your computer and use it in GitHub Desktop.
add_filter('mime_types', 'my_mimes');
function my_mimes($all)
{
// I cannot have both because wordpress doesn't allow it but i need both because each file can be one of these mime types
// $all['eps'] = 'application/postscript';
$all['eps'] = 'image/x-eps';
return $all;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment