我正在尝试在自定义页面模板中进行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
的帖子,但我无法检索它们。
我在做什么错了?