Last active
August 15, 2017 10:15
-
-
Save levnhub/fda7144db385d818876aa5a4551ada53 to your computer and use it in GitHub Desktop.
Wordpress ACF Repeater
This file contains hidden or 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('repeater_field_name') ): ?> | |
| <?php while( have_rows('repeater_field_name') ): the_row(); | |
| $image = get_sub_field('image'); | |
| $content = get_sub_field('content'); | |
| ?> | |
| <img src="<?php echo $image['url']; ?>" alt="<?php echo $image['alt'] ?>" /> | |
| <?php echo $content; ?> | |
| <?php endwhile; ?> | |
| <?php endif; ?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment