wordpress修改上传文件默认类型

前端之家收集整理的这篇文章主要介绍了wordpress修改上传文件默认类型前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

这段代码让你添加或移除wordpress上传弹出允许的文件类型。比如添加字体文woff默认是不允许的,而下面的代码轻松的让你实现。

把以下代码加到 functions.PHP 文件

function edit_upload_types($existing_mimes = array()) {

// allow .woff

$existing_mimes['woff'] = 'font/woff';

 

// add as many as you want with the same Syntax

 

// disallow .jpg files

unset( $existing_mimes['jpg'] );

 

return $existing_mimes;

}

add_filter('upload_mimes','edit_upload_types');

原文链接:https://www.f2er.com/wordpress/422829.html

猜你在找的wordpress相关文章