使用此多个tax_query获得帖子很累,但根本无法正常工作。谁能解决这个问题?如果有人能解决问题,我将永远感激他/她。
此查询无济于事。我的查询就像-
$args = array(
'posts_per_page' => 18,
'post_type' => 'post',
'post_status' => 'publish',
'tax_query' => array (
'relation' => 'AND',
array (
'taxonomy' => 'taxonomy-1',
'terms' => array( 2024 ),
'field' => 'term_id',
),
array (
'taxonomy' => 'taxonomy-2',
'terms' => array( 2025, 217 ),
'field' => 'term_id',
),
),
);
$posts = get_posts( $args );