Skip to content

Instantly share code, notes, and snippets.

@jchristopher
Created January 23, 2015 16:40
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/cd295066eae4b251b93e to your computer and use it in GitHub Desktop.
Save jchristopher/cd295066eae4b251b93e to your computer and use it in GitHub Desktop.
Manipulate the offset used during a SearchWP search
<?php
function my_searchwp_query_offset( $offset, $engine, $terms, $paged ) {
// manipulate the offset in any way you'd like
return $offset;
}
add_filter( 'searchwp_query_offset', 'my_searchwp_query_offset', 10, 3 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment