Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save ginocremer/f0cff6f4a22888333961 to your computer and use it in GitHub Desktop.
Save ginocremer/f0cff6f4a22888333961 to your computer and use it in GitHub Desktop.
Mit einem kleinen Snippet können Sie WordPress anweisen auch exotischere Dateitypen anstandslos anzunehmen.
add_filter('upload_mimes', 'add_custom_upload_mimes');
function add_custom_upload_mimes( $existing_mimes ){
$existing_mimes['zip'] = 'application/zip';
$existing_mimes['eps'] = 'application/eps';
$existing_mimes['rtf'] = 'text/richtext';
$existing_mimes['tiff'] = 'image/tiff';
return $existing_mimes;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment