Skip to content

Instantly share code, notes, and snippets.

@solid-pixel
Created May 29, 2018 10:19
Show Gist options
  • Save solid-pixel/897bb0e1ef6db81e2274f5f1f2abe425 to your computer and use it in GitHub Desktop.
Save solid-pixel/897bb0e1ef6db81e2274f5f1f2abe425 to your computer and use it in GitHub Desktop.
ACF Repeater + Gallery
<div id="project-gallery">
<?php if( have_rows('gallery_repeater') ): ?>
<?php while ( have_rows('gallery_repeater') ) : the_row(); ?>
<?php
$projGalImgs = get_sub_field('gallery');
$size = 'full';
if( $projGalImgs ): ?>
<div class="container">
<div class="row">
<?php foreach( $projGalImgs as $projGalImg ): ?>
<div class="col-6">
<?php echo wp_get_attachment_image( $projGalImg['ID'], $size ); ?>
</div>
<?php endforeach; ?>
</div>
</div>
<?php endif; ?>
<?php
endwhile;
else :
// no rows found
endif; ?>
</div><!-- #project-gallery -->
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment