ワードプレス
               
                  
            
            
            
         繰り返しフィールド出力
<?php if( have_rows('spec-table') ): ?>
		<?php while( have_rows('spec-table') ): the_row();
		$spec_tit = get_sub_field('spec-tit');
		$spec_text = get_sub_field('spec-text');
		?>
                        <tr>
                           <td><?php echo $spec_tit; ?></td>
                           <td><?php echo $spec12; ?></td>
                        </tr>
	<?php endwhile; ?>
<?php endif; ?>
               