Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save dashdanilo/2c528eaa6399545051841163ac85f03c to your computer and use it in GitHub Desktop.
Save dashdanilo/2c528eaa6399545051841163ac85f03c 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