Home › Forums › Support › Remove Pagination from category pages This topic has 1 reply, 2 voices, and was last updated 3 years, 3 months ago by David. Viewing 2 posts - 1 through 2 (of 2 total) Author Posts January 12, 2023 at 9:10 am #2493131 Shakil 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? January 12, 2023 at 9:52 am #2493200 DavidStaff Customer Support 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/ Author Posts Viewing 2 posts - 1 through 2 (of 2 total) You must be logged in to reply to this topic. Log In Username: Password: Keep me signed in Log In