hola, yo fui quien te comento en tu post anterior, lo que puedes hacer es esto, yo lo hago así:
en el sidebar pones esto:
Código PHP:
<?php
query_posts("cat=5");//cat es la categoria que quieres mostrar...
if (have_posts()) :
while (have_posts()) : the_post();
?>
<!--solo un ejemplo-->
<h4><a href="<?php echo the_permalink(); ?>"><?php echo the_title() ?></a></h4>
<span class="escrito">Escrito por <strong><?php the_author() ?> </strong> | fecha: <?php the_time('j F Y'); ?></span>
<?php the_excerpt(); // excerpt(); sirve para solo poner un fragmento del articulo
endwhile;
endif; ?>
Cualquier duda por aquí andamos... cuidate