Skip to content

Instantly share code, notes, and snippets.

@Boztown
Created August 16, 2015 20:35
Show Gist options
  • Save Boztown/df74ca58b2fd95317540 to your computer and use it in GitHub Desktop.
Save Boztown/df74ca58b2fd95317540 to your computer and use it in GitHub Desktop.
ACF Repeater Example
<?php if( have_rows('locations') ): ?>
<?php while ( have_rows('locations') ) : the_row(); ?>
<h3><?php the_sub_field('location_name'); ?></h3>
<?php endwhile; ?>
<?php endif; ?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment