How to Change “Read More” Link Text
Not everybody wants the default “Read More” text for the link to the full WordPress post so here is a super quick tip to change it with a few lines of jQuery.
Add the following code. If you don’t know where to put the code check out this tutorial.
jQuery( document ).ready(function($) {
var newText = 'Get The Juice!';
$('.more-link').text( newText );
});
Simply change the newText variable value ‘Get The Juice!’ to your requirements.
That’s all folks. Job done! Let us know of any issues and successes in the comments. We love to hear from you!