Advertisement
GochiSiyan

OTF file upload

Jan 3rd, 2021
46
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.22 KB | None | 0 0
  1. add_filter('upload_mimes', 'custom_upload_mimes');
  2. function custom_upload_mimes ( $existing_mimes=array() ) {
  3. // add your extension to the array
  4. $existing_mimes['otf'] = 'application/otf';
  5. return $existing_mimes;
  6. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement