[Resolved] Choosing numbers of post shown on search

Home Forums Support [Resolved] Choosing numbers of post shown on search

Home Forums Support Choosing numbers of post shown on search

Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #2369858
    Christiano

    How can I choose the number of entries shown when performing a search?

    THANKS IN ADVANCE! πŸ€—

    #2370203
    Leo
    Staff
    Customer Support

    Hi there,

    Try this PHP snippet:

    function search_posts_per_page( $query ) {
        if ( $query->is_search() && $query->is_main_query() ) {
            $query->set( 'posts_per_page', 10 );
        }
    }
    add_action( 'pre_get_posts', 'search_posts_per_page' );

    Adding PHP: https://docs.generatepress.com/article/adding-php/

    Let me know if this helps πŸ™‚

    #2370684
    Christiano

    Thanks Leo, it works perfectly! πŸ€—

    #2371341
    Leo
    Staff
    Customer Support

    No problem πŸ™‚

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