Posted on Sep 09, 2024
by Jimmy
Last updated on February 13, 2025
Basic ACF loop used for groups and repeaters.
Simply edit the field string and add variables as needed.
field
<?php if( have_rows('field') ) : ?> <?php while( have_rows('field') ) : the_row(); $title = get_sub_field('title'); ?> <?php endwhile; ?> <?php endif; ?>