Last active
December 21, 2015 18:19
-
-
Save yellowberri-snippets/6346766 to your computer and use it in GitHub Desktop.
PHP: ACF: Basic Repeater Field
This file contains 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 | |
$repeaterName = 'repeater'; | |
$pageId = NULL; // Just in case. | |
?> | |
<?php if ( have_rows( $repeaterName, $pageId ) ) : ?> | |
<?php while ( have_rows($repeaterName, $pageId) ) : the_row(); ?> | |
<?php the_sub_field('sub_field_name'); ?> | |
<?php endwhile; ?> | |
<?php endif; ?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment