Created
June 16, 2024 15:50
-
-
Save chrdesigner/eadde8d8f73630de63b092aae1fe806b to your computer and use it in GitHub Desktop.
This file contains hidden or 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 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