Skip to content

Instantly share code, notes, and snippets.

@kieranstartup
Created February 16, 2016 17:37
Show Gist options
  • Save kieranstartup/8f4d2c6cf6e30991efeb to your computer and use it in GitHub Desktop.
Save kieranstartup/8f4d2c6cf6e30991efeb to your computer and use it in GitHub Desktop.
ACF skip first row of repeater field
<?php if(get_field('slides')): $i = 0; while(has_sub_field('slides')): $i++; if ($i != 1): ?>
<!-- Do Stuff Here -->
<?php endif; endwhile; endif; ?>
<!-- http://support.advancedcustomfields.com/forums/topic/repeater-skip-first-row/ -->
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment