最近の投稿を表示したいWordPressの静的サイトに取り組んでいます。
最近の投稿を表示することはできますが、最近の投稿をそれぞれ独自の div 内に配置したいと考えています。これは私が現在使用しているコードです:
<div id="senastebox">
<?php $the_query = new WP_Query( 'showposts=3' ); ?>
<?php while ($the_query -> have_posts()) : $the_query -> the_post(); ?>
<a href="<?php the_permalink() ?>"><?php the_post_thumbnail( array(100,100) ); ?></a>
<a href="<?php the_permalink() ?>"><?php the_title(); ?></a>
<?php the_excerpt(); ?>
<a href="<?php the_permalink() ?>">Read More...</a>
<?php endwhile;?>
</div>
表示された最近の投稿のそれぞれと 1 つに div を割り当てるにはどうすればよいですか?