DIVI 产品画廊模块图片显示正方形

经过 小朱笔记 | 12 月 9, 2025 | 0条评论

/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代表原始图片大小,不裁剪。

如果已经上传的图片,使用插件重新生成缩略图。

0条评论

提交评论

您的邮箱地址不会被公开。 必填项已用 * 标注

这个站点使用 Akismet 来减少垃圾评论。了解你的评论数据如何被处理