<?php
query_posts('category_name=cine&showposts=3');
$ids = array();
while (have_posts()) : the_post();
$ids[] = get_the_ID();
<a href="<?php the_permalink(); ?>"><?php the_title(); ?></a
the_content();
endwhile;
?>
Con este me funciona pero los titulos no me linkean al post.. Alguna ayudita..??