Created
August 16, 2015 20:35
-
-
Save Boztown/df74ca58b2fd95317540 to your computer and use it in GitHub Desktop.
ACF Repeater Example
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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