WordPress   

Include Custom Posts in Search in WordPress

function custom_search( $query ) {
   if ( is_search() && $query->is_main_query() && $query->get( 's' ) ){
        $query->set( 'post_type', array(
            'post', 
            'books',
        ) );
    }
}
add_filter( 'pre_get_posts', 'custom_search' );
Need a helping hand in fixing your website issues?

If you are facing any problems in implementing these code snippets and tutorials, you can hire us to fix your website issues.

Hire Us