Change Read More in Blog

I am missing in the options of Blog, Content to change the standard Read More. Handy for other languages. Can you help me how tot to this?

Link to the page: https://www.borborren.nl/category/permacultuur/

Hi Bor,

Please install and activate the child theme and login through FTP then edit the functions.php of the child theme then add this code:

// Translate Strings
add_filter( 'gettext', 'translate_x_strings', 20, 3 );

function translate_x_strings( $translated_text, $text, $domain ) {

        switch ( $translated_text ) {

            case "Read More" :

                $translated_text = __( 'Translation here.', '__x__' );
                break;
        }

    return $translated_text;
}

Kindly note that since this is a custom code that changes the default behavior/display of the theme, you will be responsible to maintain or update the code in case you require further changes or if the code stops working in future updates. If you are uncertain how to proceed, it would be best to get in touch with a developer.

Hope this helps.

1 Like

Done! Many thanks!!!

You are most welcome. :slight_smile:

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.