Answers for "wordpress get the product images"

PHP
0

wordpress get the product images

<?php $image = wp_get_attachment_image_src( get_post_thumbnail_id( $product_id ), 'single-post-thumbnail' );?>
    <img src="<?php  echo $image[0]; ?>" data-id="<?php echo $loop->post->ID; ?>">
Posted by: Guest on March-31-2022

Code answers related to "wordpress get the product images"

Browse Popular Code Answers by Language