Archived topic
Blog next button translate
1 reply · Started by Rui on January 10, 2023
Viewing posts 1–2 of 2
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?
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:
This archived topic is closed to new replies.