<!-- loop.php -->
<?php while ( have_posts() ) : the_post();//ループの開始 ?>
<h3><?php the_title(); ?></h3>
<?php
if( have_rows('リピートタイトル') ):
while ( have_rows('リピートタイトル') ) : the_row();
<?php the_sub_field('文章');?>
endwhile;
else :
endif;
?>
<?php endwhile; ?>
<!-- /loop.php -->
loopのパラメーターの練習はこちら