类别存档默认情况下,它搜索帖子而不是自定义类型,您需要告诉WordPress搜索自定义类型,并将此代码粘贴到主题的函数中。php文件:
function cpt_Search_category_Filter($query) {
$post_type = array(\'post\',\'business_sold\');
if ($query->is_search || $query->is_category) {
$query->set(\'post_type\', $post_type);
};
return $query;
};
add_filter(\'pre_get_posts\',\'cpt_Search_category_Filter\');
你应该没事的。