Skip to content

Instantly share code, notes, and snippets.

@chodorowicz
Created June 21, 2016 22:17
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save chodorowicz/5a414f84f6d5b333e867bd1966b4393a to your computer and use it in GitHub Desktop.
Save chodorowicz/5a414f84f6d5b333e867bd1966b4393a to your computer and use it in GitHub Desktop.
ACF WordPress repeater field #WordPress
<?php if(get_field('gallery_images')): ?>
<?php while(the_repeater_field('gallery_images')): ?>
<img src="<?php the_sub_field('image'); ?>" alt="<?php the_sub_field('alt'); ?>" />
<?php endwhile; ?>
<?php endif; ?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment