ACF Example 4
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div class="swiper-container"> | |
<div class="swiper-wrapper"> | |
<?php | |
// check if the repeater field has rows of data | |
if( have_rows('gallery_images') ): | |
// loop through the rows of data | |
while ( have_rows('gallery_images') ) : the_row(); ?> | |
<!--First Slide--> | |
<div class="swiper-slide"> | |
<img class="img-responsive carousel-image" src="<?php the_sub_field('images'); ?>"> | |
</div> | |
<?php endwhile; ?> | |
<?php endif; ?> | |
</div> | |
</div> | |
</div> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment