Twenty Ten – archive missing "Continue reading
-
When you call up an archive category, it shows the excerpt, but doesn’t show the “Continue reading [title of post]”.
I looked in loop.php and saw:
<?php if ( is_archive() || is_search() ) : // Only display excerpts for archives and search. ?>
<div class=”entry-summary”>
<?php the_excerpt(); ?>
</div><!– .entry-summary –>
<?php else : ?>
<div class=”entry-content”>
<?php the_content( __( ‘Continue reading <span class=”meta-nav”>→</span>’, ‘twentyten’ ) ); ?>
<?php wp_link_pages( array( ‘before’ => ‘<div class=”page-link”>’ . __( ‘Pages:’, ‘twentyten’ ), ‘after’ => ‘</div>’ ) ); ?>
</div><!– .entry-content –>
<?php endif; ?>So it makes me think the “Continue reading’ instruction is there, but it doesn’t display. Any suggestion?
- The topic ‘Twenty Ten – archive missing "Continue reading’ is closed to new replies.