Skip to content

Instantly share code, notes, and snippets.

@nickberens360
Last active August 29, 2015 14:09
Show Gist options
  • Save nickberens360/965b99b304509f7ddea7 to your computer and use it in GitHub Desktop.
Save nickberens360/965b99b304509f7ddea7 to your computer and use it in GitHub Desktop.
Wordpress: ACF repeater code
<?php if( have_rows('content_blocks') ): ?>
<?php while ( have_rows('content_blocks') ) : the_row(); ?>
<h2><?php the_sub_field('content_block_title'); ?></h2>
<p><?php the_sub_field('content_block_content'); ?></p>
<?php endwhile; ?>
<?php endif; ?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment