【发布时间】:2018-06-08 12:02:13
【问题描述】:
我试图得到相反的结果:Related Products only by categories, not by tags in WooCommerce 3
我想仅根据产品标签而不是按类别显示相关产品。
到目前为止,我的 function.php 在我的子主题下有这个:
add_filter( 'woocommerce_get_related_product_cat_terms', function( $term_ids, $product_id ){
return array();
}, 10, 2 );
但它不起作用。
非常感谢任何帮助。
【问题讨论】:
标签: php wordpress woocommerce tags categories