1

我使用 WordPress 税务查询,它看起来像这样:

税务查询

$args = array(
        'post_type' => 'post',
        'post__not_in' => array($post->ID),
        'tax_query' => array(
            'relation' => 'OR',
            array(
                'taxonomy' => 'color',
                'terms' => $color_array,
                'field' => 'slug',
            ),
            array(
                'taxonomy' => 'brand',
                'terms' => $brand_array,
                'field' => 'slug',
            )
        )
    );

然后我尝试使用 foreach 循环动态添加分类法,这给了我这个数组:

分类关系 args 数组

array (size=2)
  0 => 
    array (size=3)
      'taxonomy' => string 'color' (length=5)
      'terms' => 
        array (size=1)
          0 => string 'pink' (length=4)
      'field' => string 'slug' (length=4)
  1 => 
    array (size=3)
      'taxonomy' => string 'brand' (length=11)
      'terms' => 
        array (size=2)
          0 => string 'star' (length=15)
          1 => string 'testar' (length=6)
      'field' => string 'slug' (length=4)

创建数组的 foreach 循环

简化。

$tax_relations = array();
    foreach( $taxes as $tax ) {
        $tax_relations[] = array(
            'taxonomy' => $tax,
            'terms' => $tax_array,
            'field' => 'slug',
        );
    }

将数组添加到税查询参数时,它不起作用:

合并失败

这就是我所做的。添加我称为 $tax_relations 的数组。

$args = array(
    'post_type' => 'post',
    'post__not_in' => array($post->ID),
    'tax_query' => array(
        'relation' => 'OR', $tax_relations
    )
);

到目前为止我发现了什么

这是因为钥匙。它添加了 0 => 数组,而不仅仅是数组。这是如何解决的?

4

2 回答 2

3

你可以这样做:

$args = array(
    'post_type' => 'post',
    'post__not_in' => array($post->ID),
    'tax_query' => array_merge(array('relation' => 'OR'), $tax_relations)
);
于 2013-06-20T14:31:50.130 回答
0

尝试这个:

$args = array(
    'post_type' => 'post',
    'post__not_in' => array($post->ID),
    'tax_query' => array(
        'relation' => 'OR',
    ) + $tax_relations
);
于 2013-06-20T14:34:06.733 回答