Lo que pueden hacer tambien es:
Código PHP:
Ver original<div id="post">
<?php query_posts($query_string . 'showposts=5'); while ( have_posts () ) { the_post();?>
<li>
<a href="<?php the_permalink();?>" alt="<?php the_title();?>"><?php the_title();?></a>
<php the_content('Leer más');?>
</li>
<?php } ;?>
</div>
Sino pueden visitar [URL="http://www.dinvaders.com/trucos-de-wordpress-codigo-para-poner-los-ultimos-post-creados/"]este post[/URL] en Dinvaders que también se explica como poner cierta cantidad de posts y tambien elegir la categoría.