Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save nickberens360/f36b118388535702fba6 to your computer and use it in GitHub Desktop.
Save nickberens360/f36b118388535702fba6 to your computer and use it in GitHub Desktop.
WP: Repeater field values from Options
<?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