我将以下代码放入functions.php
文件:
function filter_search($query) {
if ($query->is_search) {
$query->set(\'post_type\', array(\'topic\', \'reply\'));
};
return $query;
};
add_filter(\'pre_get_posts\', \'filter_search\');
使用该代码,我只能搜索
reply
自定义帖子类型(结果为
topic
自定义帖子类型不显示)。
这两种都是来自bbpress 2.0 plugin.
我必须这样做:
$query->set(\'post_type\', array(\'topic\'));
为了使
topic
显示自定义帖子类型(但我不再获得
reply
自定义帖子类型以显示在结果中)。
有什么建议可以解决这个问题吗?