在wooCommerce中搜索特定类别最受欢迎的方式是什么?或者只检查它是否已经存在?
我的做法是:
$searchCat = new WP_Query(array(
\'post_title\' => $cat,
\'post_type\' => \'product\',
\'tax_query\' => array(
\'terms\' => \'group\'
)
));
其中$cat表示类别的文本名称。
此外,您将如何添加一个类别?我想我把post参数计算错了,因此我的添加函数不会做得更好。
谢谢