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 Previous:
add_filter( 'generate_previous_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 Previous:
add_filter( 'generate_previous_link_text', function() {
return '<<';
} );