Skip to content

Instantly share code, notes, and snippets.

@jessijean
Created October 27, 2013 00:35
Show Gist options
  • Save jessijean/7176425 to your computer and use it in GitHub Desktop.
Save jessijean/7176425 to your computer and use it in GitHub Desktop.
/*========================================= ACF Repeater ======================================== */
add_action( 'woo_post_inside_after', 're_acf_repeater', 10); // hook is the first part   function re_acf_repeater () { ?> <?php if(get_field('field_name')): ?> <ul> <?php while(has_sub_field('field_name')) { ?> <li><?php the_sub_field('sub_field_name'); ?></li> <?php } ?> </ul> <?php endif; ?> <?php }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment