此代码允许您上载.bin
文件。
/**
* Allow upload bin mime type
*/
add_filter( \'upload_mimes\', \'wpse_287673_allow_upload_bin_mime_type\', 1, 1 );
function wpse_287673_allow_upload_bin_mime_type( $mime_types ) {
$mime_types[\'bin\'] = \'application/octet-stream\';
return $mime_types;
}
这段代码已经过测试,正在为我工作,但对您来说可能有些不同,因为我们允许按扩展名上载文件,并且您的文件的mime类型和mime类型是由webserver定义的。