How to Change Read More Text in WordPress?

Code to Change “Read More” Text in WordPress-

If you want to change the read more text, all you need to do is to add the following code snippet in your theme’s function.php file:- Replace YOUR READ MORE TEXT HERE with your desired read more text.

function custom_read_more_link() {
    return '<a class="more-link" href="' . get_permalink() . '">YOUR READ MORE TEXT HERE</a>';
}
add_filter( 'the_content_more_link', 'custom_read_more_link' );