Support

Account

Home Forums Add-ons Repeater Field List all repeater subfield values for a post (preferably comma separated) Reply To: List all repeater subfield values for a post (preferably comma separated)

  • 
    <?php 
      $dates = array();
      if (have_rows('line_chart_all_months')) {
        while (have_rows('line_chart_all_months')) {
          the_row();
          $dates[] = get_sub_field('line_chart_month');
        }
      }
      echo implode(', ', $dates);
    ?>