Skip to content

Instantly share code, notes, and snippets.

@dompascal
Created December 12, 2013 10:41
Show Gist options
  • Save dompascal/7926110 to your computer and use it in GitHub Desktop.
Save dompascal/7926110 to your computer and use it in GitHub Desktop.
WP - ACF Repeater Loop
<?php if(get_field('slideshow_images')): ?>
<?php while(the_repeater_field('slideshow_images')): ?>
<?php $image = wp_get_attachment_image_src(get_sub_field('image_file'), 'full'); ?>
<img src="<?php echo $image[0]; ?>" alt="" />
<?php endwhile; ?>
<?php endif; ?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment