如何获取 WooCommerce 的所有父类别
How to get all parent categories of WooCommerce
仅获取 WooCommerce 中没有 post id 的所有父类别。
您可以将 get_terms 用作:
$terms = get_terms(['taxonomy' => 'product_cat','hide_empty' => false, 'parent' => 0]);
希望这对您有所帮助。
仅获取 WooCommerce 中没有 post id 的所有父类别。
您可以将 get_terms 用作:
$terms = get_terms(['taxonomy' => 'product_cat','hide_empty' => false, 'parent' => 0]);
希望这对您有所帮助。