Site logo

[Resolved] Blog next button translate

Home Forums Support [Resolved] Blog next button translate

Home Forums Support Blog next button translate

Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #2490146
    Rui

    Hi!

    I need to translate the next button in the blog navigation of my main page but I don’t find how, only inside the post:
    https://vertuainvest.com.br/

    Could you help me please?

    #2490388
    David
    Staff
    Customer Support

    Hi there,

    you can use this PHP Snippet to change the Next and Prev button text:

    add_filter( 'generate_next_link_text', function() {
        return 'Next →';
    } );
    add_filter( 'generate_previous_link_text', function() {
        return '← Previous';
    } );

    Just update the text to what you require.

    And this doc explains how to add that PHP:

    https://docs.generatepress.com/article/adding-php/

Viewing 2 posts - 1 through 2 (of 2 total)
  • You must be logged in to reply to this topic.