我正在尝试从WooCommerce的“相关产品”部分中排除产品类别(标识:78)。我已经有一个自定义查询,该查询仅显示子类别中的相关产品。
这是我的代码:
<?php global $post, $product;
if (empty($product) || !$product->exists()) {
return;
}
$subcategories_array = array(0);
$all_categories = wp_get_post_terms($product->id, 'product_cat');
foreach ($all_categories as $category) {
$children = get_term_children($category->term_id, 'product_cat');
if (!sizeof($children)) {
$subcategories_array[] = $category->term_id;
}
}
if (sizeof($subcategories_array) == 1) {
return array();
}
$args = array(
'orderby' => 'rand',
'posts_per_page' => 3,
'post_type' => 'product',
'category__not_in' => array( 78 ),
'fields' => 'ids',
'meta_query' => $meta_query,
'tax_query' => array(
array(
'taxonomy' => 'product_cat',
'field' => 'id',
'terms' => $subcategories_array,
)
)
);
$wp_query = new WP_Query($args);
if ($wp_query->have_posts()):
?>
<section class="related products">
<h2><?php esc_html_e('Related products', 'woocommerce'); ?></h2>
<?php woocommerce_product_loop_start(); ?>
<?php while ($wp_query->have_posts()) : $wp_query->the_post(); ?>
<?php
global $post, $product;
$post_object = get_post($product->get_id());
setup_postdata($GLOBALS['post'] = & $post_object);
wc_get_template_part('content', 'product');
?>
<?php endwhile; ?>
<?php woocommerce_product_loop_end(); ?>
</section>
<?php
endif;
wp_reset_postdata();
但是,排除上述产品类别似乎并没有达到我的预期。
感谢您的帮助。
答案 0 :(得分:0)
Woocommerce产品类别是一种自定义分类法,不能在WP_Query
中使用category__not_in
作为Wordpress类别使用…而是尝试将其与现有tax_query
结合起来。
在您现有的tax_query
上,对于fields
自变量,您需要将id
替换为term_id
(由默认状态,因此您可以删除该行)…
参见WP_Query
Taxonomy Parameters official documentation
尝试以下操作:
$args = array(
'orderby' => 'rand',
'posts_per_page' => 3,
'post_type' => 'product',
'fields' => 'ids',
'meta_query' => $meta_query,
'tax_query' => array(
array(
'taxonomy' => 'product_cat',
'terms' => $subcategories_array,
),
array(
'taxonomy' => 'product_cat',
'terms' => array( 78 ),
'operator' => 'NOT IN',
)
)
);
应该可以。