Support

Account

Home Forums General Issues How can I display the values of a repeater-field from a post object? Reply To: How can I display the values of a repeater-field from a post object?

  • Instead of getting the repeater value you loop over it the normal way

    
    if (have_rows('materialien', $materialien_post)) {
      while (have_rows('materialien', $materialien_post)) {
        the_row()
        // .... etc
      }
    }