Skip to content

Instantly share code, notes, and snippets.

@jchristopher
Created March 27, 2020 12:30
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/771d29d07c96827f5b487e2eca89ac71 to your computer and use it in GitHub Desktop.
Save jchristopher/771d29d07c96827f5b487e2eca89ac71 to your computer and use it in GitHub Desktop.
Return 12 results per page of SearchWP results
<?php
// Return 12 results per page of SearchWP results.
add_filter( 'searchwp\query\per_page', function( $per_page, $args ) {
return 12;
}, 30, 2 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment