• Resolved killertofu01

    (@killertofu01)


    Hi,

    I was wondering if I can use the_excerpt function multiple times to display the last post excerpt from multiple categories on the main page?

    I am trying to have it so when someone goes to the front page, they are shown excerpts from certain categories, and then are able to view them if they want.

    Thanks!

Viewing 1 replies (of 1 total)
  • Thread Starter killertofu01

    (@killertofu01)

    Figured it out.

    For those looking in the future…

    <?php query_posts('showposts=1&amp;cat=15'); if (have_posts()) : while (have_posts()) : the_post(); ?>
    <h2><a class="title" href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h2>
    <?php the_excerpt(); ?>
    <?php endwhile; else : endif; ?>

    Just change the category number to fit the category you want. You can put this block of code several times to display several different categories.

Viewing 1 replies (of 1 total)
  • The topic ‘Multiple Excerpt on Main Page’ is closed to new replies.