Skip to content

Instantly share code, notes, and snippets.

@grappler
Last active December 11, 2015 18:38
Show Gist options
  • Select an option

  • Save grappler/4642772 to your computer and use it in GitHub Desktop.

Select an option

Save grappler/4642772 to your computer and use it in GitHub Desktop.
<?php
function support_custom_mimes( $mimes ){
$mimes['webm'] = 'video/webm';
return $mimes;
}
add_filter( 'upload_mimes', 'support_custom_mimes' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment