Select Page

Welcome to WordPress. This is your first post. Edit or delete it, then start writing!

//* allow otf file upload to media library 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; }