Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save dexit/aea8917c4eded0ac471276869b171357 to your computer and use it in GitHub Desktop.
Save dexit/aea8917c4eded0ac471276869b171357 to your computer and use it in GitHub Desktop.
Add custom mime type for WordPress
<?php
function mihdan_edit_upload_types( $existing_mimes = array() ) {
// allow .woff
$existing_mimes['woff'] = 'font/woff';
// disallow .jpg files
unset( $existing_mimes['jpg'] );
return $existing_mimes;
}
add_filter( 'upload_mimes', 'mihdan_edit_upload_types' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment