如何让WordPress支持上传更多文件类型
Posted wing2002li
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了如何让WordPress支持上传更多文件类型相关的知识,希望对你有一定的参考价值。
如何让WordPress支持上传更多文件类型
可以在functions.php中这样写:
1
2
3
4
5
6
7
8
9
|
add_filter( ‘upload_mimes‘ , ‘wpdit_filter_mime_types‘ ); function wpdit_filter_mime_types( $mimes ) { $mimes [ ‘ttf‘ ] = ‘font/ttf‘ ; $mimes [ ‘woff‘ ] = ‘font/woff‘ ; $mimes [ ‘svg‘ ] = ‘font/svg‘ ; $mimes [ ‘eot‘ ] = ‘font/eot‘ ; return $mimes ; } |
以上是关于如何让WordPress支持上传更多文件类型的主要内容,如果未能解决你的问题,请参考以下文章
如何让 WordPress 媒体管理识别更多的多媒体文件类型
Wordpress 插件开发 - 文件上传:如何允许指定的文件类型?