我的网站上有四分之一的woocommerce类别。但是,我只想展示我的主要分类法相关产品。谁能帮我?谢谢!
这是我的代码:
function woocommerce_output_related_products() {
$args = array(
'posts_per_page' => 4,
'columns' => 4,
'type' => 'post',
'child_of' => 0,
'parent' => '',
'orderby' => 'title',
'order' => 'ASC',
'hide_empty' => 1,
'hierarchical' => 1,
'exclude' => '',
'include' => '',
'number' => '',
'taxonomy' => 'category',
'pad_counts' => false,
);
woocommerce_related_products( apply_filters( 'woocommerce_output_related_products_tag_terms', $args ) );
}