almaz-b
4/21/2017 - 10:51 PM

ACF output

ACF output

<?php
if( have_rows('repeater_field_name') ):
  

    while ( have_rows('repeater_field_name') ) : the_row();

        the_sub_field('sub_field_name');
        

    endwhile;
else :
    // no rows found
endif;
?>
<?php 

$images = get_field('gallery');

if( $images ): ?>
    <ul>
        <?php foreach( $images as $image ): ?>
            <li>
                <a href="<?php echo $image['url']; ?>">
                     <img src="<?php echo $image['sizes']['thumbnail']; ?>" alt="<?php echo $image['alt']; ?>" />
                </a>
                <p><?php echo $image['caption']; ?></p>
            </li>
        <?php endforeach; ?>
    </ul>
<?php endif; ?>