Skip to content

Instantly share code, notes, and snippets.

@chrdesigner
Created June 16, 2024 15:50
Show Gist options
  • Save chrdesigner/eadde8d8f73630de63b092aae1fe806b to your computer and use it in GitHub Desktop.
Save chrdesigner/eadde8d8f73630de63b092aae1fe806b to your computer and use it in GitHub Desktop.
<?php if( have_rows('repeater_field') ): ?>
<ul>
<?php while ( have_rows('repeater_field') ) : the_row(); ?>
<li><?php the_sub_field('sub_field'); ?></li>
<?php endwhile; ?>
</ul>
<?php endif; ?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment