Skip to content

Instantly share code, notes, and snippets.

@jchristopher
Forked from hilja/SearchWP
Last active April 7, 2017 12:42
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/b05a4e99210b0c14c6210056f366bdf0 to your computer and use it in GitHub Desktop.
Save jchristopher/b05a4e99210b0c14c6210056f366bdf0 to your computer and use it in GitHub Desktop.
<?php
// Seach WP posts per page
add_filter('searchwp_posts_per_page', function($posts_per_page, $engine, $terms, $page) {
return 20;
}, 99, 4);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment