april-s
3/11/2016 - 5:06 PM

ACF field counter snippet.

ACF field counter snippet.

<?php
// get the count on the repeater field
// mabye use get_sub_field() instead of get_field() if it's nested
$count = count( get_sub_field( 'the_field' ) );

// begin $count conditions
if ( $count > 1 ) { ?>
  // greater than 1
  <?php the_field( 'great_than_1' ); ?>
<?php } else { ?>
  // less than 1
  <?php the_field( 'less_than_1' ); ?>
<?php } ?>