Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- add_filter('upload_mimes', 'custom_upload_mimes');
- function custom_upload_mimes ( $existing_mimes=array() ) {
- // add your extension to the array
- $existing_mimes['otf'] = 'application/otf';
- return $existing_mimes;
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement