Skip to content

Instantly share code, notes, and snippets.

@marcbacon
Last active September 26, 2017 20:11
Show Gist options
  • Save marcbacon/21bf68442b6c4ebf65335a91f9dc8486 to your computer and use it in GitHub Desktop.
Save marcbacon/21bf68442b6c4ebf65335a91f9dc8486 to your computer and use it in GitHub Desktop.
[ACF Repeater] ACF repeater syntax simplified. #wordpress #acf
<?php if( have_rows('repeater_field_name') ): // check if the repeater field has rows of data ?>
<?php while ( have_rows('repeater_field_name') ) : the_row(); // loop through the rows of data ?>
<?php the_sub_field('sub_field_name'); // display a sub field value ?>
<?php endwhile; ?>
<?php endif; ?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment