Created
November 7, 2013 16:40
-
-
Save tjhole/7357654 to your computer and use it in GitHub Desktop.
ACF: Repeater Basic
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(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