Hi,
When I go to a category archive it only shows a small excerpt of the blogs with a "read more" button.
I would like to show the entire blogs on these pages in full length.
Thanks!
Hi,
When I go to a category archive it only shows a small excerpt of the blogs with a "read more" button.
I would like to show the entire blogs on these pages in full length.
Thanks!
You can make this change by editing archive.php. Open it up and find this code:
<?php the_excerpt(); ?>
<a href="<?php echo get_permalink(); ?>" class="more-link">Read more</a>
and change it to this:
<?php the_content(); ?>
you'll now see the full content in the Category Archive.
You must log in to post.