Skip to content

Instantly share code, notes, and snippets.

@uptimizt
Created May 19, 2017 17:33
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 uptimizt/44e4cf680fa0f69f385087c966f354ee to your computer and use it in GitHub Desktop.
Save uptimizt/44e4cf680fa0f69f385087c966f354ee to your computer and use it in GitHub Desktop.
Allow zip and gzip files (mime type) for WordPress
<?php
function wpcraft_zip_gzip_mime_types ( $mimes ) {
$existing_mimes['zip'] = 'application/zip';
$existing_mimes['gz'] = 'application/x-gzip';
return $mimes;
}
add_filter('upload_mimes', 'wpcraft_zip_gzip_mime_types');
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment