Hocam query_posts ile deneyin.
<ul>
<?php query_posts('showposts=5&orderby=date&cat=1'); ?>
<?php while (have_posts()) : the_post(); ?>
<li><a href="<?php the_permalink(); ?>" title="<?php the_title(); ?>"><?php the_title(); ?></a></li>
<?php endwhile; ?>
</ul>