WordPress如何实现上传不同类型的文件

Published
2023-04-26
浏览次数 :  191

很多小朋友可能只知道用下面这个函数来允许wp上传不同类型的文件:

// Allow upload of ZIP files
add_filter('upload_mimes', 'custom_upload_mimes');
function custom_upload_mimes ( $existing_mimes=array() ) {
    // add the file extension to the array
    $existing_mimes['zip'] = 'application/zip';
	$existing_mimes['xml'] = 'application/xml';
    return $existing_mimes;
}

但是,有一些主题或者服务器是直接从服务器上禁止,

那么现在我们要在wp-config.php里面加入下面一段代码,来从服务器层面开启允许不同文件类型的上传:

define('ALLOW_UNFILTERED_UPLOADS', true);

Top