我实际上在 pre_get_post :
上有这样的钩子add_action('pre_get_posts', 'my_post_pre_get_posts');
function my_post_pre_get_posts($query)
{
if (!is_admin() && $query->is_main_query() && $query->is_home()) {
$query->set('posts_per_page', 3);
//FILTERS
$type = array();
if(!empty($_GET['type'])) {
$type = explode(',', $_GET['type']);
}else {
$type = array('post', 'testimonial', 'project');
}
$query->set('post_type', $type);
//CATEGORIES
if(!empty($_GET['category'])) {
$category = explode(',', $_GET['category']);
$args = array(
'relation' => 'OR',
);
foreach ($category as $categorie) {
array_push($args,
array(
'taxonomy' => 'category',
'field' => 'slug',
'terms' => $category
)
);
}
$query->set('tax_query', $args);
}
}
}
有了这个,我的主页显示帖子以及另外两个自定义帖子类型:“项目”和“推荐”。
我的帖子有类别(但项目和推荐没有),我想用它过滤它们。但是,当我使用分类法过滤时,我不希望它隐藏项目和推荐结果。
因此,在post_type和分类法之间没有“AND”关系,我想要一个“OR”关系。你认为这可能吗?我是否必须重写全局$ wpdb?
答案 0 :(得分:0)
设置'关系'在您的类别循环与您的tax_query'之后设置
$ query-> tax_query-> relation =' OR';