<?php if (have_posts()):while (have_posts()):the_post();?>
<div>
<h2><a href="<?php the_permalink() ?>"><?php the_title(); ?></a></h2>
<?php the_content();?>
</div>
<br />
<?php endwhile;endif;?>
上記のコードで記事をループで挿入しているのですが、3つの記事ごとの終わりにBRタグを
挿入したいのですが可能でしょうか?
<div>
内容
</div>
<div>
内容
</div>
<div>
内容
</div>
<br />
<div>
内容
</div>
みたいな感じにしたいのです。
何か良い方法はあるでしょうか?
よろしくお願いします。
WordPress Version 2.5.1日本語版
PHP Version 5.2.5
MySQL Version 5.0.51a
使用しているブラウザ Firefox3.0