Skip to content

Instantly share code, notes, and snippets.

@jchristopher
Created July 23, 2015 09:51
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jchristopher/ccd4d814b9eadbbc67b4 to your computer and use it in GitHub Desktop.
Save jchristopher/ccd4d814b9eadbbc67b4 to your computer and use it in GitHub Desktop.
Have SearchWP perform searches in WooThemes' Sensei
<?php
// SearchWP/Sensei compat
function searchwp_sensei_compat() {
if ( is_post_type_archive() && is_search() ) {
add_filter( 'searchwp_outside_main_query', '__return_true' );
}
}
add_action( 'parse_query', 'searchwp_sensei_compat' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment