Archived topic
Customize Search Results lists
3 replies · Started by Maria Rowena on May 10, 2020
Hello GeneratePress Support Team,
I need help with my search result page. Is there a way for the result page to show more than 30 results per page. Currently, when you search for something, it will initially give you 10 results per page. I want to increase it. Is it possible?
So far my result page is like this.
https://snipboard.io/xMgR9w.jpg
Hi there,
try adding this PHP Snippet:
function search_post_per_page( $query ) {
if( ! $query->is_main_query() )
return;
if ( is_search() ){
//Display 30 posts for search
$query->set( 'posts_per_page', 30);
}
}
add_action('pre_get_posts', 'search_post_per_page', 1);
Hello David!
Thank you so much for the code. It worked! I have another question regarding search result list but it would be better to open a new ticket for it.
More power to GeneratePress Team!
Happy to be of help