1 | <!-- loop.php --> |
2 | <?php while ( have_posts() ) : the_post(); //ループの開始 ?> |
3 | <h3><?php the_title(); ?></h3> |
4 | <?php |
5 | if ( have_rows( 'リピートタイトル' ) ): |
6 | while ( have_rows( 'リピートタイトル' ) ) : the_row(); |
7 | <?php the_sub_field( '文章' );?> |
8 | endwhile ; |
9 | else : |
10 | endif ; |
11 | ?> |
12 | <?php endwhile ; ?> |
13 | <!-- /loop.php --> |