Ver Mensaje Individual
  #2 (permalink)  
Antiguo 29/05/2009, 16:42
Avatar de WillxD
WillxD
 
Fecha de Ingreso: febrero-2009
Ubicación: Lima =D!
Mensajes: 82
Antigüedad: 15 años, 9 meses
Puntos: 3
Respuesta: Plugin mostrar post solo con título y enlace

Lo podrías hacer poniendo este código

Código:
<ul>
<?php query_posts('cat=1&showposts=9999'); ?>
<?php while (have_posts()) : the_post(); ?>
<li><a href="<?php the_permalink();?>"><?php the_title(); ?></a></li>
<?php endwhile;?>
</ul>
Donde lo de rojo es el id de tu categoría, es decir puedes repetir todo el código solo cambiando el id de tu categoría.

Salu2!