Skip to content

Instantly share code, notes, and snippets.

@mihdan
Created February 26, 2021 08:39
Show Gist options
  • Save mihdan/7dfda8dd5c712696b41d988cec99cce3 to your computer and use it in GitHub Desktop.
Save mihdan/7dfda8dd5c712696b41d988cec99cce3 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