lkSuperboy
Posted on: 2 years ago

How to get Woocommerce Product Gallery image URLs?

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