Forums

Show excerpts on front page, full post on other pages (3 posts)

  1. rfielder21
    Member
    Posted 2 years ago #

    I figured out how to show excerpts with thumbnails on the front page and on the category pages, but I'd like the "about" page and my other 4 pages to show the full post.

    I'm guessing I need to add some sort of a "conditional" code to the following, but I don't know what (from index.php):

    <div class="post-content" ><?php the_excerpt('Read the rest of this entry »'); ?></div>

  2. kz
    Member
    Posted 2 years ago #

    <?php if(iS_category() || is_front_page() /* || is_home() */) : ?>
      <div class="post-content"><?php the_excerpt('Read the rest of this entry ยป'); ?></div>
    <?php else : ?>
      <div class="post-content"><?php the_content(); ?></div>
    <?php endif; ?>
  3. rfielder21
    Member
    Posted 2 years ago #

    Well played. Thanks!

Topic Closed

This topic has been closed to new replies.

About this Topic

Tags