とりあえず、これおぼえときゃなんかできる。

<?php if (have_posts()) : ?>
<?php while (have_posts()) : the_post(); ?>
 ・
 ・
 ・
(処理)
 ・
 ・
 ・
<?php endwhile; else: ?>
<?php endif; ?>

 

使用例
<?php if (have_posts()) : ?>
<?php while (have_posts()) : the_post(); ?>
<h2><?php the_title(); ?></h2>
<?php the_content(); ?>
<?php endwhile; else: ?>
<?php endif; ?>