Dear Support
I need to add a “Continue reading” link on each post listed in the author archive page. Could you please tell me how to do it?
Thank you
Hi Gurify!
In the /enfold/includes/loop-author.php file around line 127 you should see this.
echo wpautop($content);
Add this beneath it.
echo '<a href = "'.get_permalink().'">Continue reading</a>';
Regards,
Elliott
Thank you very much, it worked :)