WordPress多个tax_query具有多个术语不起作用

时间:2018-12-18 12:15:03

标签: wordpress

使用此多个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 );

0 个答案:

没有答案