Skip to content

Instantly share code, notes, and snippets.

@levnhub
Last active August 15, 2017 10:15
Show Gist options
  • Select an option

  • Save levnhub/fda7144db385d818876aa5a4551ada53 to your computer and use it in GitHub Desktop.

Select an option

Save levnhub/fda7144db385d818876aa5a4551ada53 to your computer and use it in GitHub Desktop.
Wordpress ACF Repeater
<?php if( have_rows('repeater_field_name') ): ?>
<?php while( have_rows('repeater_field_name') ): the_row();
$image = get_sub_field('image');
$content = get_sub_field('content');
?>
<img src="<?php echo $image['url']; ?>" alt="<?php echo $image['alt'] ?>" />
<?php echo $content; ?>
<?php endwhile; ?>
<?php endif; ?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment