Skip to content

Instantly share code, notes, and snippets.

@aiiddqd
Created May 19, 2017 17:33
Show Gist options
  • Select an option

  • Save aiiddqd/44e4cf680fa0f69f385087c966f354ee to your computer and use it in GitHub Desktop.

Select an option

Save aiiddqd/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