Site logo

[Support request] Remove Pagination from category pages

Home Forums Support [Support request] Remove Pagination from category pages

Home Forums Support Remove Pagination from category pages

Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #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?

    #2493200
    David
    Staff
    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/

Viewing 2 posts - 1 through 2 (of 2 total)
  • You must be logged in to reply to this topic.