Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save gdeguglielmo/6342346 to your computer and use it in GitHub Desktop.
Save gdeguglielmo/6342346 to your computer and use it in GitHub Desktop.
WordPress - Show every result on search page
/* Display all results on search page */
function change_wp_search_size($query) {
if ( $query->is_search ) // Make sure it is a search page
$query->query_vars['posts_per_page'] = -1; // Change 10 to the number of posts you would like to show
return $query; // Return our modified query variables
}
add_filter('pre_get_posts', 'change_wp_search_size');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment