How to Change “Read More” Link Text

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!

Disclaimer - Divi is a registered trademark of Elegant Themes, Inc. This website isn't affiliated with or endorsed by Elegant Themes.
To enable us to keep some of the content on this site free, we might receive an affiliate commission if you click through and purchase products we advertise/recommend. You will never be charged more for this.