Bu işini görür:

<?php query_posts('showposts=10'); ?>
<ul>
<?php while (have_posts()) : the_post(); ?>
<li>
<h3> <a href="<?php the_permalink() ?>" title="<?php the_title(); ?>"><?php the_title(); ?></a> <span><?php the_time('d M, Y'); ?></span></h3>
</li><?php endwhile;?>
</ul>