Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ginocremer/9390731 to your computer and use it in GitHub Desktop.
Save ginocremer/9390731 to your computer and use it in GitHub Desktop.
Upload erlauben von .swf, .tiff, .rtf oder .zip
add_filter('upload_mimes', 'eigene_upload_mimes');
function eigene_upload_mimes( $vorhandene_mimes ){
$vorhandene_mimes['zip'] = 'application/zip';
$vorhandene_mimes['swf'] = 'application/x-shockwave-flash';
$vorhandene_mimes['rtf'] = 'text/richtext';
$vorhandene_mimes['tiff'] = 'image/tiff';
return $vorhandene_mimes;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment