Archived topic
French language in Blog page
3 replies · Started by Dan on October 29, 2020
Viewing posts 1–4 of 4
Hi there,
How can I change in French language in Blog page?
ex.: Previous or Next botton page to (Précédent ou Suivant)...
Hi,
Try this PHP snippet. Just change 'Next' and 'Previous' text to french. :)
add_filter( 'generate_next_link_text', function() {
return 'Next';
} );
add_filter( 'generate_previous_link_text', function() {
return 'Previous';
} );
Thank you Elvin,
It's work.
Thank you Elvin,
It’s work.
Glad to know it works for you. No problem. :)
This archived topic is closed to new replies.