36

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?

Alex Kulinkovich
  • 4,408
  • 15
  • 46
  • 50
Jishad
  • 2,876
  • 8
  • 33
  • 62

1 Answers1

75

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 );
    }
?>
FooBar
  • 5,752
  • 10
  • 44
  • 93
gaurav kumar
  • 1,073
  • 8
  • 8