您可以使用检索分类术语get_terms()
.
通过他们的文档:
$terms = get_terms( array(
\'taxonomy\' => \'product_cat\',
\'hide_empty\' => false,
));
它返回:
(array | int | WP\\u Error)WP\\u Term实例及其子实例的列表。如果任何$分类法不存在,将返回WP\\u错误。
您可以通过执行以下操作查看
echo "<pre>".print_r($terms,true)."</pre>";