Last active
March 17, 2017 13:47
-
-
Save nickberens360/f36b118388535702fba6 to your computer and use it in GitHub Desktop.
WP: Repeater field values from Options
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(get_field('service_areas', 'option')): ?> | |
<?php while(has_sub_field('service_areas', 'option')): ?> | |
<li><?php the_sub_field('service_area'); ?></li> | |
<?php endwhile; ?> | |
<?php endif; ?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment