Created
January 31, 2017 06:18
-
-
Save sjaved87/c55a2f6c86b8c690a8a99bb8628bc793 to your computer and use it in GitHub Desktop.
Allow zip and gzip files in WordPress Media Library
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
function sjaved_zip_gzip_mime_types ( $mimes ) { | |
$existing_mimes['zip'] = 'application/zip'; | |
$existing_mimes['gz'] = 'application/x-gzip'; | |
return $mimes; | |
} | |
add_filter('upload_mimes', 'sjaved_zip_gzip_mime_types'); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment