Hey, maybe someone can help... I created static pages and pasted this code to grab only posts in specific categories.
<h2><?php single_cat_title(); ?></h2>
<?php
// retrieve posts from Cat 123
query_posts('cat=6');
global $more;
// set $more to 0 in order to only get the first part of the post
$more = 0;
// the Loop
while (have_posts()) : the_post();
// the content of the post
the_content('Read the full post ยป');
endwhile;
?>
The posts show but the post-titles are missing... any ideas?
-m