使用tax_query时WP_Query不起作用

时间:2018-08-28 14:44:43

标签: php wordpress

我正在尝试在自定义页面模板中进行text-rendering: optimizeLegibility检索ID为4003 AND 类别为ID WP_Query < strong> OR 带有标签$category_id的标签。
我正在使用以下代码:

$category_slug

似乎是问题<?php $args3 = array( 'post_type' => 'post', 'posts_per_page' => 3, 'tax_query' => array( 'relation' => 'AND', array( 'taxonomy' => 'category', 'field' => 'term_id', 'terms' => 4003, ), array( 'relation' => 'OR', array( 'taxonomy' => 'tag', 'field' => 'slug', 'terms' => $category_slug ), array( 'taxonomy' => 'category', 'field' => 'term_id', 'terms' => $category_id ) ) ), ); $query3 = new WP_Query( $args3 ); ?> ,因为正确检索了类别为4003和tag的帖子。我知道有一些类别为4003且标记为$category_id的帖子,但我无法检索它们。
我在做什么错了?

0 个答案:

没有答案