Skip to content

Instantly share code, notes, and snippets.

@jchristopher
Created April 22, 2019 13:26
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/0d05e90cee1d63f31ba28dbad5ae8d8d to your computer and use it in GitHub Desktop.
Save jchristopher/0d05e90cee1d63f31ba28dbad5ae8d8d to your computer and use it in GitHub Desktop.
Filter arguments sent to SWP_Query before a search is run in SearchWP
<?php
add_filter( 'searchwp_swp_query_args', function( $args ) {
// TODO: Modify $args as you see fit.
return $args;
} );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment