Get images URL from Gallery
-
Hi, I’m trying to get the images from the gallery by the below code:
<?php global $product; $attachment_ids = $product->get_gallery_image_ids(); foreach($attachment_ids as $attachment_id) { $image_url = wp_get_attachment_url($attachment_id); ?> <div class="swiper-slide"> <a data-fancybox="gallery" href="<?php echo $image_url; ?>" style="background: url(<?php echo $image_url; ?>) center no-repeat;background-size:cover;"> <img src="<?php echo $image_url; ?>" alt="gallery"> </a> </div> <?php } ?>
But it’s not working, can you please help me? I think the problem is coming from these two lines:
global $product; $attachment_ids = $product->get_gallery_image_ids();
Viewing 3 replies - 1 through 3 (of 3 total)
Viewing 3 replies - 1 through 3 (of 3 total)
- The topic ‘Get images URL from Gallery’ is closed to new replies.