Skip to content

Instantly share code, notes, and snippets.

@searchwpgists
Last active March 16, 2022 16:25
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 searchwpgists/b9525bd3108d7c4a03c337857d43f201 to your computer and use it in GitHub Desktop.
Save searchwpgists/b9525bd3108d7c4a03c337857d43f201 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