nickberens360
1/26/2015 - 7:29 PM

wordpress: acf nested repeater

wordpress: acf nested repeater

<?php if( have_rows('list_block') ): ?>
	<?php  while ( have_rows('list_block') ) : the_row(); ?>	
			<h2><?php the_sub_field('list_title'); ?></h2>
			<?php  if( have_rows('list_items') ): ?>
				<ul>
				<?php 
				while( have_rows('list_items') ): the_row();
					?>
					<li><?php the_sub_field('list_item'); ?></li>
				<?php endwhile; ?>
				</ul>
			<?php endif;  ?>
			<p><?php the_sub_field('list_item'); ?></p>
	<?php endwhile; ?>
<?php endif; ?>