• I have a page set up to show only posts from one category, which I’m calling using the php query_posts function. How to I make it so that the posts are displayed as excerpts only, not as full articles?

    Here’s the code I’m using on the page:

    <?php query_posts(‘category_name=news&showposts=10’); ?>
    <?php while (have_posts()) : the_post(); ?>
    <?php endwhile;?>

Viewing 8 replies - 1 through 8 (of 8 total)
Viewing 8 replies - 1 through 8 (of 8 total)

The topic ‘Show post excerpts only.’ is closed to new replies.