gpt4 book ai didi

php - 在 Woocommerce 中检索产品库图像缩略图

转载 作者:行者123 更新时间:2023-12-02 20:12:15 25 4
gpt4 key购买 nike

我正在寻找一种功能,可以获取图库图像的缩略图,而不是完整图像。我目前使用 $product->get_gallery_attachment_ids(); 检索它们。

有问题的代码:

$attachment_ids = $product->get_gallery_attachment_ids();

$image_link = wp_get_attachment_url( $attachment_ids[0] );

echo "<img class='back-thumb' src='" . $image_link . "'></img>";

最佳答案

您可以使用专用的 Woocommerce wc_get_gallery_image_html()具有 WC_Product 方法的函数 get_gallery_image_ids()像:

if ( $attachment_ids = $product->get_gallery_image_ids() ) {
foreach ( $attachment_ids as $attachment_id ) {
echo wc_get_gallery_image_html( $attachment_id );
}
}

或者像你的代码一样:

if ( $attachment_ids = $product->get_gallery_image_ids() )
echo wc_get_gallery_image_html( $attachment_ids[0] );

经过测试并有效。


更改缩略图尺寸和裁剪: See this documentation section

关于php - 在 Woocommerce 中检索产品库图像缩略图,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53321682/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com