我已通过此功能从Woocommerce获取所有父类别
$terms = get_terms( array(
\'taxonomy\' => \'product_cat\',
\'hide_empty\' => false,
\'parent\' => 0
) );
但我还没有做到这一点
WP_Query. 现在我有两个问题:
如何使用WQ\\u Query从WooCommerce获取类别列表?建议使用WP\\u Query over get\\u terms谢谢。
最合适的回答,由SO网友:NikHiL Gadhiya 整理而成
$category_detail=get_the_category(get_the_ID());//$post->ID
foreach($category_detail as $cd)
{
$name_cat=$cd->cat_name;
$id_cat=$cd->term_id;
}
try now this code