Support

Account

Home Forums ACF PRO Row count needed in flexible content > layout > repeater Reply To: Row count needed in flexible content > layout > repeater

  • <?php if ( have_rows( 'highlight' ) ) :
      $repeater = get_field('highlight'); 
      while ( have_rows( 'highlight' ) ) : the_row();
        if (!empty($repeater)) {
          $count = count($repeater);
        };
    endwhile;
    endif; ?>