Have SearchWP perform searches in WooThemes' Sensei
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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