I’ve been pulling my hair out trying to figure this out (thanks for making me bald btw π ) but I need to have full posts in the archives like this http://src.wpl.ca/category/chapter-book-challenge/chapter-book-challenge-main Since there is no archives.php file I’m not sure where to edit the code.
Any help would ge hugely appreciated.
Michael
You need to open each content-*.php file and replace this code:
<div class="entry-summary">
<?php the_excerpt(); ?>
</div><!-- .entry-summary -->
with this:
<?php if( is_archive() ) : ?>
<div class="entry-content">
<?php the_content(); ?>
</div><!-- .entry-content -->
<?php else : ?>
<div class="entry-summary">
<?php the_excerpt(); ?>
</div><!-- .entry-summary -->
<?php endif; ?>