Skip to content

Instantly share code, notes, and snippets.

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