If you’re like me, you’re probably not happy with the default language that Divi gives you that says “read more” at the end of your blog excerpt. Here is a handy piece of code to adjust the text using your child theme’s functions.php. function change_read_more( $translated_text, $text, $domain ) { switch ( $translated_text ) { case 'read more' : $translated_text =...
Change the Divi Read More Text
C