Skip to content

Instantly share code, notes, and snippets.

Embed
What would you like to do?
Modify the LIMIT total of SearchWP searches
<?php
function my_searchwp_query_limit_total( $total, $page, $engine ) {
if ( 'default' == $engine && 10 == $page ) {
$total = 100;
}
return $total;
}
add_fitler( 'searchwp_query_limit_total', 'my_searchwp_query_limit_total', 10, 3 );
@james-nagle
Copy link

Ran into the same typo when I got an error 500 after implementing this filter. Just a friendly notice.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment