Jis*_*had 25 php mysql wordpress wordpress-plugin woocommerce
我正在开发一个wordpress woo商业购物网站并添加了一些产品.我想获得每个产品的产品图库图片网址.

我怎样才能获得图片的网址?
小智 53
试试这个:
<?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 );
}
?>
Run Code Online (Sandbox Code Playgroud)