Dynamic Image Display Using ACF Repeater Fields
Explore our WordPress category, where you’ll find loads of helpful articles and tutorials for everyone, whether you’re just starting out or a pro developer. Learn about different WordPress themes and plugins that can be applied in various projects according to their specific requirements.
This code is used in the wordpress when we want to get acf plugin repeater values from the loop:
<?php if( have_rows(‘repeater_field_name’) ): ?>
<?php while( have_rows(‘repeater_field_name’) ): the_row();
vars $image = get_sub_field(‘image’); ?>
<img src=”<?php echo $image[‘url’]; ?>” />
<?php endwhile; ?>
<?php endif; ?>
<?php while( have_rows(‘repeater_field_name’) ): the_row();
vars $image = get_sub_field(‘image’); ?>
<img src=”<?php echo $image[‘url’]; ?>” />
<?php endwhile; ?>
<?php endif; ?>