In this quick post, I will show you how to translate Previous and Next text in GeneratePress theme.
add_filter( 'generate_previous_link_text', function() {
return sprintf('%s Your Previous Text', '<span aria-hidden="true">←</span>');
} );
add_filter( 'generate_next_link_text', function() {
return sprintf('Your Next Text %s', '<span aria-hidden="true">→</span>');
} );
Using the above code, replace “Your Previous Text” text with your own custom previous text.
Similarly, using the above code, replace “Your Next Text” text with your own custom next text.
Note: You can use Code Snippets plugin to add custom PHP code to your website.