• Resolved Fotis

    (@fotis)


    Hi wp users,

    i’m runnning this blog hunt-gr.com .
    As you can notice, excerpts appeare only in home page and not in categories.

    What i must change?

Viewing 4 replies - 1 through 4 (of 4 total)
  • as i see it, excerpts also show in the category archive pages;

    can you post a direct link to a category page, where the full posts show?

    Thread Starter Fotis

    (@fotis)

    yes, you ve right.

    In categories excerpts appeare but doesn’t appear the read more button.

    this is because the frontpage template (index.php) uses the_content() and you probably use the ‘more-tag’ when writing the posts; while the archive and category archive (archive.php) uses the_excerpt()

    to have the categories archive show the same way as the front page, edit archive.php of your theme, and change this section:

    <div class="entry">
    					<?php the_excerpt() ?>
    				</div>

    to:

    <div class="entry">
    								<?php the_content('<strong>Read more &raquo;</strong>'); ?>
    							</div>
    Thread Starter Fotis

    (@fotis)

    Many thanks.

    All is ok.

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

The topic ‘Excerpt in Categories’ is closed to new replies.