繰り返しフィールド:固定滋賀県守山市のホームページ制作

ワードプレス

繰り返しフィールド:固定

               <table>
<?php
$args = array(
'cat' => "カテゴリースラッグ",
"posts_per_page" => $posts_per_page,
"paged" => $paged
);
query_posts($args);
?> 
<?php if(have_posts()): while(have_posts()): the_post(); ?>

<?php if( have_rows('フィールド名') ):  ?>
<?php while ( have_rows('フィールド名') ) : the_row(); ?>
                  <tr>
                     <td class="item1_20br"><?php the_sub_field('サブフィールド'); ?></td>
                     <td class="text1_80"><?php the_sub_field('サブフィールド'); ?></td>
                  </tr>
<?php endwhile; ?>
<?php endif; ?> 

<?php endwhile; endif; ?>
<?php wp_reset_query(); ?>
               </table>