ループの書き方のメモ
<?php if ( have_posts() ) : ?>
<?php while ( have_posts() ) : the_post(); ?>
<!-- なにかの処理 ... -->
<?php endwhile; ?>
<?php endif; ?>
ループの書き方のメモ
<?php if ( have_posts() ) : ?>
<?php while ( have_posts() ) : the_post(); ?>
<!-- なにかの処理 ... -->
<?php endwhile; ?>
<?php endif; ?>
コメントを残す