Skip to content

Instantly share code, notes, and snippets.

@tjhole
Created November 7, 2013 16:40
Show Gist options
  • Save tjhole/7357654 to your computer and use it in GitHub Desktop.
Save tjhole/7357654 to your computer and use it in GitHub Desktop.
ACF: Repeater Basic
<?php if(get_field('repeater_field_name')): ?>
<ul>
<?php while(has_sub_field('repeater_field_name')): ?>
<li>
<?php the_sub_field('sub_field_1'); ?>
<?php the_sub_field('sub_field_2'); ?>
</li>
<?php endwhile; ?>
</ul>
<?php endif; ?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment