Skip to content

Instantly share code, notes, and snippets.

@emaildano
Created January 28, 2014 20:21
Show Gist options
  • Save emaildano/8675530 to your computer and use it in GitHub Desktop.
Save emaildano/8675530 to your computer and use it in GitHub Desktop.
Get first image in ACF repeater field
<?php
$first_img = true;
while($first_img && has_sub_field('post_images')): ?>
<a href="<?php the_permalink(); ?>">
<img class="img-responsive" src="<?php
$image = get_sub_field('image');
echo $image['sizes']['blog-lg'];
?>" alt="<?php echo $image['alt']; ?>" />
<?php $first_img = false; ?>
</a>
<?php endwhile; ?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment