• Hello everybody !
    I wanted my WP to show 1 article per page. I made it via “reading” menu but it seems that this applies to articles when searching also.

    I want my searching results to be shown as 5-10 articles, not just 1.
    Any ideas ?

Viewing 3 replies - 1 through 3 (of 3 total)
  • Moderator keesiemeijer

    (@keesiemeijer)

    Try it with this in your theme’s functions.php

    function my_search_query( $query ) {
      // not on admin pages, and only on the main query
      if (!is_admin() && $query->is_main_query()){
        if(is_search()){
          // is a search page -> show 5 posts
          $query->set('posts_per_page', 5);
        }
      }
    }
    add_action( 'pre_get_posts', 'my_search_query' );

    Thread Starter kristiyan

    (@kristiyan)

    It works !!! Thank you very much keesiemeijer !!! You made my day

    Moderator keesiemeijer

    (@keesiemeijer)

    You’re welcome. I’m glad you got it resolved.

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘How to show more pages while searching?’ is closed to new replies.