在我的网站中,我有一个滑块可以加载 620*620 尺寸的产品图片。我想加载这张图片的其他尺寸(我想要的尺寸是在 wordpress 库中创建的,但我不知道如何加载它们)。"woocomerce_thumbnail" 中的默认图片大小。我可以使用的其他尺寸是多少?
我在这里找到了一些东西,但如何更改此默认大小?(我可以使用的其他尺寸是什么?)
if (!function_exists( 'woocommerce_get_product_thumbnail' ) ) {
/**
* Get the product thumbnail, or the placeholder if not set.
*
* @param string $size (default: 'woocommerce_thumbnail').
* @param int $deprecated1 Deprecated since WooCommerce 2.0 (default: 0).
* @param int $deprecated2 Deprecated since WooCommerce 2.0 (default: 0).
* @return string
*/
function woocommerce_get_product_thumbnail( $size = 'woocommerce_thumbnail', $deprecated1 = 0, $deprecated2 = 0 ) {
global $product;
$image_size = apply_filters( 'single_product_archive_thumbnail_size', $size );
return $product ? $product->get_image( $image_size ) : '';
}
}
慕工程0101907
萧十郎