Follow

Keep Up to Date with the Most Important News

By pressing the Subscribe button, you confirm that you have read and are agreeing to our Privacy Policy and Terms of Use
Contact

Change worspress read more button text

I have a problem with Read More button.

Here is a link to my website: http://kamilawosinska-skillspring.com/index.php/publikacje/

As you can see all site is in Polish but Read More button is in English

MEDevel.com: Open-source for Healthcare and Education

Collecting and validating open-source software for healthcare, education, enterprise, development, medical imaging, medical records, and digital pathology.

Visit Medevel

I can’t change it. I tried Loco translator but it does not work.

Do you have any idea how to change Read More button text?

I use Bstone theme.

>Solution :

add_action( 'wp_head', 'change_read_more_to_something' );
function change_read_more_to_something() {
    add_filter( 'gettext', 'change_read_more_text');
}

function change_read_more_text( $text ) {
 
    $text = str_ireplace( 'Read More',  'YOUR TEXT',  $text );
    return $text;
}

Add this code to your functions.php

This should work but remember this will change all Read More

Add a comment

Leave a Reply

Keep Up to Date with the Most Important News

By pressing the Subscribe button, you confirm that you have read and are agreeing to our Privacy Policy and Terms of Use

Discover more from Dev solutions

Subscribe now to keep reading and get access to the full archive.

Continue reading