Skip to content

Instantly share code, notes, and snippets.

@oliwa
Created February 21, 2017 15:07
Show Gist options
  • Save oliwa/f5b69773fc6850241ff0e82020114397 to your computer and use it in GitHub Desktop.
Save oliwa/f5b69773fc6850241ff0e82020114397 to your computer and use it in GitHub Desktop.
Repeater Field with Gallery
<?php if( have_rows('mede_events') ): while ( have_rows('mede_events') ) : the_row(); ?>
<hr/>
<h2><i class="fa fa-flag"></i> <?php the_sub_field('med_event_title'); ?></h2>
<?php the_sub_field('med_event_copy'); ?>
<?php $images = get_sub_field('med_event_gallery'); ?>
<?php if( $images ): foreach( $images as $image ): ?>
<a href="<?php echo $image['url']; ?>">
<img src="<?php echo $image['sizes']['thumbnail']; ?>" alt="<?php echo $image['alt']; ?>" />
</a>
<?php endforeach; ?>
<?php endif; ?>
<?php endwhile; else : ?>
<p><mark>Noch keine Repeater Felder angegeben</mark></p>
<?php endif; ?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment