ACF Group/Repeater Loop Starter

Posted on Sep 09, 2024

by Jimmy

Last updated on February 13, 2025

ACF

Basic ACF loop used for groups and repeaters.

Simply edit the field string and add variables as needed.

PHP
        
            <?php if( have_rows('field') ) : ?>

    <?php while( have_rows('field') ) : the_row(); 
        $title = get_sub_field('title');
        ?>
    
    <?php endwhile; ?>

<?php endif; ?>        
    

Back to Snippets