How to get Woocommerce Product Gallery image URLs?

Jishad picture Jishad · Dec 30, 2014 · Viewed 52.4k times · Source

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.

screen shot of product page

how can I get the URLs of images?

Answer

gaurav kumar picture gaurav kumar · Dec 30, 2014

Try this:

<?php
    global $product;

    $attachment_ids = $product->get_gallery_image_ids();

    foreach( $attachment_ids as $attachment_id ) {
        echo $image_link = wp_get_attachment_url( $attachment_id );
    }
?>