Archived topic
I want to display all pagination pages in category pages
1 reply · Started by Aditya on April 28, 2022
Viewing posts 1–2 of 2
I am using generate press & i want to display all pagination pages so that a user can see/click on any of the available pagination pages.
Currently it looks like this https://nimb.ws/8jFVxl
Hi there,
this Doc provides the PHP Snippet you require:
https://docs.generatepress.com/article/generate_pagination_mid_size/
To show all links just return a really large number eg. 99 :
add_filter( 'generate_pagination_mid_size','tu_increase_pagination_numbers' );
function tu_increase_pagination_numbers() {
return 99;
}
Adding PHP: https://docs.generatepress.com/article/adding-php/
This archived topic is closed to new replies.