He encontrado este codigo:
Código PHP:
<div class="ultimas-entradas">
<?php query_posts('showposts=5');?>
<?php if (have_posts()) : while (have_posts()) : the_post();?>
<ul>
<li>
<h2><a href="<?php the_permalink();?> title="<?php the_title_attribute();?>"><?php the_title();?></a></h2>
</li>
<ul>
<?php endwhile; endif;?>
</div>
Como digo me gustaría poner solo los títulos de los post
Gracias!!!!