如何获取Woocommerce Product Gallery图片网址?

时间:2014-12-30 09:38:02

标签: php mysql wordpress wordpress-plugin woocommerce

我正在开发一个wordpress woo商业购物网站并添加了一些产品。我想获得每种产品的产品图库图片。

screen shot of product page

如何获取图片的网址?

1 个答案:

答案 0 :(得分:47)

试试这个:

<?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 );
    }
?>