我需要为woocommerce中的特定类别的产品设置自定义产品图片大小。在woocommerce单一产品图像设置中,默认设置为300x300像素,但对于特定类别的产品,需要为600x600像素。
答案 0 :(得分:0)
在functions.php文件中使用主题支持代码
<?php add_theme_support( 'woocommerce', array(
'thumbnail_image_width' => 150,
'single_image_width' => 322,
) ); ?>