Home › Forums › Support › Choosing numbers of post shown on search This topic has 3 replies, 2 voices, and was last updated 1 year, 11 months ago by Leo. Viewing 4 posts - 1 through 4 (of 4 total) Author Posts October 11, 2022 at 7:04 am #2369858 Christiano How can I choose the number of entries shown when performing a search? THANKS IN ADVANCE! π€ October 11, 2022 at 10:27 am #2370203 LeoStaff 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 π October 12, 2022 at 12:37 am #2370684 Christiano Thanks Leo, it works perfectly! π€ October 12, 2022 at 9:38 am #2371341 LeoStaff Customer Support No problem π Author Posts Viewing 4 posts - 1 through 4 (of 4 total) You must be logged in to reply to this topic. Log In Username: Password: Keep me signed in Log In