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; ?>