raunak-gupta
10/27/2016 - 11:28 AM

To add custom post_types in search result of wordpress.

To add custom post_types in search result of wordpress.

<?php

//to include search result

function searchfilter($query) {
    if ($query->is_search && !is_admin() ) {
        $query->set('post_type',array('post','page', 'readers-corners', 'todays-facts'));
    }
return $query;
}

add_filter('pre_get_posts','searchfilter');