我不精通 php,但我发现了一个片段,它会限制我的用户将大于 1mb 的“图像”文件上传到我的 wordpress 网站。(我将编辑此限制以满足我的要求)。我假设“图像”文件是 jpg、png 等。 但是 pdf 文件呢,这个片段也会限制它们,还是它们不被归类为“图像”类型文件?
理想情况下,我需要限制 jpg 和 pdf 文件。这个需要修改吗?
// WP - LIMIT IMAGE UPLOAD SIZE
function max_image_size( $file ) {
$size = $file['size'];
$size = $size / 1024;
$type = $file['type'];
$is_image = strpos( $type, 'image' ) !== false;
$limit = 1024;
$limit_output = '1MB';
if ( $is_image && $size > $limit ) {
$file['error'] = 'Image files must be smaller than ' . $limit_output;
}//end if
return $file;
}//end max_image_size()
add_filter( 'wp_handle_upload_prefilter', 'max_image_size' );
(使用 php 7.2)在此先感谢,克里斯。