• vbdeco

    (@vbdeco)


    Hi,

    Do you know where and how to translate “Read More”, in french for example.

    Regards.

Viewing 2 replies - 1 through 2 (of 2 total)
  • Hi @vbdeco.

    You may translate “Read More” using filter “the_content_more_link”:

    function modify_read_more_link() {
        return '<a class="more-link" href="' . get_permalink() . '">Your Read More Link Text</a>';
    }
    add_filter( 'the_content_more_link', 'modify_read_more_link' );

    References:
    Customizing the Read More
    Filter

    Thread Starter vbdeco

    (@vbdeco)

    Thank you.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Translate “Read More”’ is closed to new replies.