カテゴリ毎の最新投稿 日時つき
<?php query_posts('posts_per_page=5&order=desc&cat=3'); ?>
<?php while (have_posts()) : the_post(); ?>
<li>
<p><span class="date"><?php the_time('_Y.m.d'); ?></span><br>
<a href="<?php the_permalink(); ?>"><?php the_title(); ?></a>
</p>
</li>
<?php endwhile;wp_reset_query(); ?>