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; ?>