Support

Account

Home Forums Add-ons Repeater Field Repeater Query: getting just that row's sub fields Reply To: Repeater Query: getting just that row's sub fields

  • For anyone wondering, I had to call for just that row with the following code:

      while (have_rows('projects')) {
        the_row();
        if (get_sub_field('unique_id') != $uniqueID) {
          // not our row
          continue;
        } 
        // REPEATER FIELD LOOP
        include('items.php');
      }