您可以使用single_product_archive_thumbnail_size
用于更改特定产品使用的图像大小的过滤器:
function wpse_287488_product_thumbnail_size( $size ) {
global $product;
if ( $product->get_id() === 123 ) {
$size = \'medium\';
}
return $size;
}
add_filter( \'single_product_archive_thumbnail_size\', \'wpse_287488_product_thumbnail_size\' );
只需更换
medium
使用要使用的注册图像大小。看见
this codex article 有关图像大小的概述以及如何注册自己的图像。