How to make the ‘more’ link point to the post instead of the category list [closed]

I’m using the List Category Posts plugin to list a certain categories posts on a page in my site.
The default ‘more’ link functionality is to point to a full list of the categories posts. I’d like to have a ‘more’ link after each post + excerpt which links to the specific full post. Can his be done?

1 Answer
1

inside the loop, after your excerpt you can place a the following:

<a href="https://wordpress.stackexchange.com/questions/44605/<?php the_permalink(); ?>">more</a>

Leave a Comment