nickberens360
11/13/2014 - 8:30 PM

Wordpress: ACF repeater code

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; ?>