Support

Account

Home Forums ACF PRO have_rows() Issue Reply To: have_rows() Issue

  • Try using reset_rows()

    
    if (have_rows('field_name')) {
      while (have_rows('field_name')) {
        // code
      }
      reset_rows();
    }