How to get Woocommerce Product Gallery image URLs?

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

Read More

how can I get the URLs of images?

Related posts

Leave a Reply

1 comment

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