• Does anybody have an example of this I can see? I have been trying to figure out how to do it on one of my category pages but my php skills are pretty basic.

Viewing 1 replies (of 1 total)
  • Try this:

    <?php if(have_posts()) : the_post() ?>
               <php the_excerpt(); ?>
    <?php endif; ?>
    
    <?php while(have_posts()) : the_post() ?>
                  <php the_content(); ?>
    <?php endwhile; ?>

    found by google HERE

Viewing 1 replies (of 1 total)
  • The topic ‘Loop that chooses content for first post then excerpt for older posts’ is closed to new replies.