The generate_previous_link_text
allows you to change the text in .paging-navigation
element.
For example, if we want to use >> instead of the default text Next:
add_filter( 'generate_next_link_text', function() {
return '>>';
} );
The generate_previous_link_text
allows you to change the text in .paging-navigation
element.
For example, if we want to use >> instead of the default text Next:
add_filter( 'generate_next_link_text', function() {
return '>>';
} );