I am developing a wordpress woo commerce shopping site and added some products. i want to get the product gallery image urls of each products.
我正在开发一个wordpress woo商业购物网站,并添加了一些产品。我想获取每个产品的产品图库图像url。
how can I get the URLs of images?
如何获取图像的url ?
1 个解决方案
#1
38
Try this:
试试这个:
<?php
global $product;
$attachment_ids = $product->get_gallery_attachment_ids();
foreach( $attachment_ids as $attachment_id ) {
echo $image_link = wp_get_attachment_url( $attachment_id );
}
?>
#1
38
Try this:
试试这个:
<?php
global $product;
$attachment_ids = $product->get_gallery_attachment_ids();
foreach( $attachment_ids as $attachment_id ) {
echo $image_link = wp_get_attachment_url( $attachment_id );
}
?>