SearchWP

This Documentation is for SearchWP Version 3

Integrate SearchWP and WooThemes’ Sensei LMS

Sensei is a powerful learning management system from WooThemes. Woo has a neat approach that utilizes custom post type archive pages to display search results. SearchWP doesn’t automatically take over these searches since it’s technically an archive page, but you can tell it to do just that by adding the following to your theme’s functions.php:

<?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' );
view raw functions.php hosted with ❤ by GitHub
[wpforms id="3080"]