Skip to content

Instantly share code, notes, and snippets.

@jchristopher
Created March 20, 2015 17:04
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jchristopher/97d2455f5a78bfd17908 to your computer and use it in GitHub Desktop.
Save jchristopher/97d2455f5a78bfd17908 to your computer and use it in GitHub Desktop.
Customize the number of results in SearchWP Live Ajax Search
<?php
function my_searchwp_live_search_posts_per_page() {
return 20; // return 20 results
}
add_filter( 'searchwp_live_search_posts_per_page', 'my_searchwp_live_search_posts_per_page' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment