Skip to content

Instantly share code, notes, and snippets.

@iamgabrielma
Created January 20, 2019 04:56
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 iamgabrielma/2afaa728e30f3827a224ec5d0e1cc3be to your computer and use it in GitHub Desktop.
Save iamgabrielma/2afaa728e30f3827a224ec5d0e1cc3be to your computer and use it in GitHub Desktop.
Allow .kml file upload 1721841-zen
// Add as many keys/values to the $mimes Array as needed
function gma_zen_1721841_custom_upload_mimes($mimes = array()) {
$mimes['kml'] = "application/xml";
return $mimes;
}
add_action('upload_mimes', 'gma_zen_1721841_custom_upload_mimes');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment