您应该在搜索中尝试此功能
global $query_string;
wp_parse_str($query_string, $search_query);
//add post type.
$post_type = array(\'post_type\'=>\'your-custom-post-type\');
$combine_search = array_merge($search_query,$post_type);
$search = new WP_Query($combine_search);