I have woff and otf font.
I have tried many things.
-
I added
function font_mime_types($mimes) {
$mimes[‘svg’] = ‘image/svg+xml’;
$mimes[‘woff’] = ‘font/woff’;
$mimes[‘otf’] = ‘font/otf’;
$mimes[‘woff2’] = ‘font/woff2’;
return $mimes;
}
add_filter(‘upload_mimes’, ‘font_mime_types’); -
I uploaded fonts to uploads folder
-
Tried to add custom font trough wordpress plugin.
Nothing worked so font enters into font editor, and when I try to upload trough media gallery I get that file type is not allowed.
What can I do to change this?
I can change something on the server, if there is the problem. Just tell me what to look for, please
thank you