【发布时间】:2021-03-23 07:41:43
【问题描述】:
您好,我想根据我的自定义查询显示相关产品,但我只想显示“in_stocks”产品,而 meta_query 不适用于 tax_query。谁能帮帮我?
$query_args = array(
'posts_per_page' => 10,
'no_found_rows' => 1,
'post__not_in' => array( $product->get_id()),
'post_status' => 'publish',
'post_type' => 'product',
'tax_query' => array(
'relation' => 'OR',
array(
'taxonomy' => 'product_cat',
'field' => 'id',
'terms' => $cats_array
),
array(
'taxonomy' => 'product_tag',
'field' => 'id',
'terms' => $tags_array
) )
);
【问题讨论】:
标签: php wordpress woocommerce custom-taxonomy taxonomy-terms