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 = __( 'read more ->', 'et_builder' );
break;
}
return $translated_text;
}
add_filter( 'gettext', 'change_read_more', 20, 3 );