Skip to content

Instantly share code, notes, and snippets.

@timoleinio
Last active August 29, 2015 13:55
Show Gist options
  • Save timoleinio/8713580 to your computer and use it in GitHub Desktop.
Save timoleinio/8713580 to your computer and use it in GitHub Desktop.
<?php
add_filter('upload_mimes', 'wpopas_add_custom_upload_mimes');
function wpopas_add_custom_upload_mimes( $mimes = array() ) {
// Lisää tiedostotyyppi
$mimes['kmz'] = 'application/vnd.google-earth.kmz';
return $mimes;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment