Support

Account

Home Forums Add-ons Repeater Field How to make File repeater Reply To: How to make File repeater

  • Try something like this

    
    if (have_rows('file_repeater')) {
      while (have_rows('file_repeater')) {
        the_row();
        $file = get_sub_field('file_upload');
        echo $file['url'],'<br />';
      }
    }