could you please explain simply how to loop through images.
-
trying to loop through all the featured images.
<?php while ( have_posts() ) : the_post(); $attachments = dfi_get_featured_images($post->ID); foreach($attachments as $attachment) { $medium_img_url = dfi_get_image_url( $attachment['attachment_id'], 'medium' ); ?> <li> <a class="gall-img" href="<?php the_permalink() ?>" style="margin-bottom: 0;"> <img src="<?php echo $medium_img_url; ?>" alt="<?php echo dfi_get_image_alt_by_id($attachment['attachment_id']); ?>" /> </a> </li> <?php } endwhile; ?>
https://www.ads-software.com/plugins/dynamic-featured-image/
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
- The topic ‘could you please explain simply how to loop through images.’ is closed to new replies.