Skip to content

Instantly share code, notes, and snippets.

@antiden
Created January 9, 2017 07:05
Show Gist options
  • Save antiden/cdd7344a7ce1825f04c8327d6c957a09 to your computer and use it in GitHub Desktop.
Save antiden/cdd7344a7ce1825f04c8327d6c957a09 to your computer and use it in GitHub Desktop.
WP ACF Gallery
<?php $images = get_field('gallery'); ?>
<?php 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; ?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment