Created
February 21, 2017 15:07
-
-
Save oliwa/f5b69773fc6850241ff0e82020114397 to your computer and use it in GitHub Desktop.
Repeater Field with Gallery
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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