Support

Account

Home Forums ACF PRO Total noob, trying to display repeater… Reply To: Total noob, trying to display repeater…

  • It gets easy to add once you’ve done it a few dozen or a few hundred times

    
    if (have_posts()) {
      while (have_posts()) {
        the_post();
        // do stuff for post here
      }
    }