dylanjameswagner
3/10/2017 - 11:12 PM

WordPress ACF Gallery Link URL

WordPress ACF Gallery Link URL

<?php
$gallery = get_field('gallery', 'options', false);

foreach ($gallery as $item) :
  echo '<a target="_blank" href="' . get_field('link_url', $item) . '">' . wp_get_attachment_image($item, 'medium') . '</a>';
endforeach;