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