• I would like my category pages to only display a list of the posts in that category and not any of the post itself.

    Is this possible?

Viewing 16 replies (of 16 total)
  • Solved!
    Change de if loop for this one:

    <?php
    $posts = get_posts('numberposts=100'); /* display 100 posts per page */
    foreach($posts as $post) :
    setup_postdata($post);
    ?>
    <div class="post">
    .....................
    <?php endforeach; ?>

Viewing 16 replies (of 16 total)
  • The topic ‘Category page to display list of posts only’ is closed to new replies.