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

opp*_*tyr 2 php wordpress product gallery woocommerce

我正在寻找一个功能,可以让我获得图库图像的缩略图,而不是完整图像。我目前使用 检索它们$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>";
Run Code Online (Sandbox Code Playgroud)

Loi*_*tec 5

您可以使用专用的 Woocommercewc_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 );
    }
}
Run Code Online (Sandbox Code Playgroud)

或者像你的代码一样:

if ( $attachment_ids = $product->get_gallery_image_ids() )
    echo wc_get_gallery_image_html( $attachment_ids[0] );
Run Code Online (Sandbox Code Playgroud)

经过测试并有效。


更改缩略图尺寸和裁剪: 请参阅此文档部分