【发布时间】:2019-04-18 16:29:46
【问题描述】:
我正在寻找一种功能,它可以让我获得画廊图像的缩略图,而不是完整的图像。我目前使用$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>";
【问题讨论】:
标签: php wordpress woocommerce product gallery