ben-g
10/26/2017 - 4:27 PM

ACF image array with text

This is a Repeater section with sub-fields for the content


<!-- Callout section -->
<?php if( have_rows('callout') ):
while ( have_rows('callout') ) : the_row(); ?>
<div class="callout-section">
<?php $image = get_sub_field('callout_image'); ?>

<div><a href="<?php echo $image['url']; ?>"><img src="<?php echo $image['url']; ?>" alt="<?php echo $image['alt']; ?>" /></a></div>

<div><span style="font-size: 22px;"><?php the_sub_field('callout_text'); ?></span></div>
</div>
<?php endwhile; endif; ?>
  <!-- end callout section-->