2
ユーザーが画像をアップロードするときに制限を加えようとしています。私はfunction.phpファイルでこの機能を使用しようとしましたが、ユーザと管理者のすべてのアップロード画像に制限が加えられています。Wordpress機能アップロード時の画像の制限
add_filter('wp_handle_upload_prefilter','mdu_validate_image_size');
function mdu_validate_image_size($file) {
$image = getimagesize($file['tmp_name']);
$minimum = array(
'width' => '1000',
'height' => '1000'
);
$maximum = array(
'width' => '1000',
'height' => '1000'
);
$image_width = $image[0];
$image_height = $image[1];
$too_small = "Image dimensions are too small. Minimum size is {$minimum['width']} x {$minimum['height']} pixels. Uploaded image is $image_width x $image_height pixels.";
$too_large = "Image dimensions are too large. Maximum size is {$maximum['width']} x {$maximum['height']} pixels. Uploaded image is $image_width x $image_height pixels.";
if ($image_width < $minimum['width'] || $image_height < $minimum['height']) {
// add in the field 'error' of the $file array the message
$file['error'] = $too_small;
return $file;
}
elseif ($image_width > $maximum['width'] || $image_height > $maximum['height']) {
//add in the field 'error' of the $file array the message
$file['error'] = $too_large;
return $file;
}
else
return $file;
}
私は唯一の特徴画像のサイズを取得するには、この機能を変更しなければならないのか、私が使用してどのようなフィルタを持っているにはどうすればよいですか?
https://codeblog.jonskeet.uk/2010/08/29/writing-the-perfect-question/ – TheGameiswar