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的主要内容,如果未能解决你的问题,请参考以下文章