Support

Account

Home Forums Add-ons Repeater Field Count total number of repeater rows Reply To: Count total number of repeater rows

  • 
    $count = 0;
    $locations = get_field('locations');
    if (is_array($locations)) {
      $count = count($locations);
    }