/DIVI产品禁止横向或纵向裁剪图片*/
add_filter( ‘et_pb_gallery_image_width’, ‘custom_image_width’ );
function custom_image_width($width) {
return ‘9999’;
}
add_filter( ‘et_pb_gallery_image_height’, ‘custom_image_height’ );
function custom_image_height($height) {
return ‘9999’;
}
add_image_size( ‘custom-image-size’, 9999, 9999, array( ‘center’, ‘center’ ) );
其中999代表原始图片大小,不裁剪。
如果已经上传的图片,使用插件重新生成缩略图。