php 允许在媒体库上传TTF和EOT
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php 允许在媒体库上传TTF和EOT相关的知识,希望对你有一定的参考价值。
define('ALLOW_UNFILTERED_UPLOADS', true);
/* That's all, stop editing! Happy blogging. */
// add to your theme's functions.php file
function add_custom_upload_mimes($existing_mimes) {
$existing_mimes['ttf'] = 'application/x-font-ttf';
$existing_mimes['eot'] = 'application/vnd.ms-fontobject';
return $existing_mimes;
}
add_filter('upload_mimes', 'add_custom_upload_mimes',1 ,1);
以上是关于php 允许在媒体库上传TTF和EOT的主要内容,如果未能解决你的问题,请参考以下文章
为啥我们应该在字体中包含 ttf、eot、woff、svg、...
为啥我们应该在字体中包含 ttf、eot、woff、svg、...
凯尔特字体 - eot, woff, ttf - webfont
Webpack - 防止对等依赖项中的字体文件(.woff、.eot、.ttf)成为构建的一部分
如何将 OTF/TTF 文件转换为 EOT 格式?
ttf,eot,woff,svg,字体格式介绍及使用方法