• 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

Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
  • The topic ‘Category Titles not showing’ is closed to new replies.