Divi ‘Read more’ translation of blog posts
This text is hardcoded and can’t be translated in the .po file.
Add this to functions.php of the child theme
// START Change the ‘Read more’ translation
add_filter( 'gettext', 'custom_text', 20, 3 );
function custom_text( $translated_text) {
$translated_text = str_ireplace('Lees meer', 'Lees verder...', $translated_text);
return $translated_text;
}
// END Change the ‘Read more’ translationCode language: PHP (php)