Search code examples
wordpressrevolution-slider

Search form in Revolution Slider - search criteria


I am using the following to place a search form in a slider revolution hero slider. However it searches the entire site. I would like it to only search pages on my site. Any ideas what I need to change to make that work?


Solution

  • Add this function

    function wpshock_search_filter( $query ) {
    if ( $query->is_search ) {
        $query->set( 'post_type', array('post','page') );
    }
    return $query;
    }
    add_filter('pre_get_posts','wpshock_search_filter');
    

    OR you can use this plugin https://wordpress.org/plugins/relevanssi/

    I hope its working for you.