Answer the question
In order to leave comments, you need to log in
How to display the first photo in woocommerce outside the slider?
Hi all!
How to display the first photo of a product from a wordpress array?
<?php
$product_id = get_the_ID();
$product = new WC_product($product_id);
$attachment_ids = $product->get_gallery_attachment_ids();
foreach($attachment_ids as $attachment_id){
echo '<div class="slide w-slide product__slider_modalbtn" style="background-image: url('.wp_get_attachment_url($attachment_id).');"></div>';
}
?>
Answer the question
In order to leave comments, you need to log in
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question