Hi,
Please remove the last code and use this new code:-
<?php
add_filter('upload_mimes', 'sf_add_custom_upload_mimes');
function sf_add_custom_upload_mimes($existing_mimes){
return array_merge($existing_mimes, array( 'ttf|woff|otf' => 'application/x-font') );
return $existing_mimes;
}
?>
Thanks
Mohammad