Can the code be modified for the archive page to only display the post excerpt rather than the full post text?
Thanks.
Can the code be modified for the archive page to only display the post excerpt rather than the full post text?
Thanks.
Hi usersight,
The archive page uses the same loop as the index which breaks the content based on using the more tag: http://en.support.wordpress.com/splitting-content/more-tag/
I would suggest giving that a try as the theme is built to support this method to break up content.
Otherwise, you can try going into includes>loop-index.php and searching for the_content and replace that whole line with:
if ( is_category() || is_archive() ) {
the_excerpt();
} else {
the_content();
}
Regards,
Devin
You must log in to post.