Archived topic
Remove Pagination from category pages
1 reply · Started by Shakil on January 12, 2023
Viewing posts 1–2 of 2
I would like to show all of my posts on the category page. I mean I want to remove Pagination.
How Can I do that In my Generatepress Theme?
Hi there,
you cant tell WordPress to set the number of posts to all, by adding this PHP Snippet to your site:
function db_category_show_all_posts( $query ) {
if ( $query->is_category() && $query->is_main_query() ) {
$query->set( 'posts_per_page', -1 );
}
}
add_action( 'pre_get_posts', 'db_category_show_all_posts' );
This doc explains adding PHP:
https://docs.generatepress.com/article/adding-php/
This archived topic is closed to new replies.