听起来很奇怪,但我看到了一些奇怪的要求,所以我相信你有很好的理由。
$names = array();
$slugs = array();
$terms = get_terms(array(
\'taxonomy\' => \'product_cat\',
\'hide_empty\' => false,
));
foreach($terms as $term) {
array_push($names, $term->name);
array_push($slugs, $term->slug);
}
将创建这两个数组。注意,我已经重命名了您调用的变量
$taxonomies
因为当它包含另一个事物时,用一个事物来命名它是令人困惑的(在本例中,它将包含术语,而不是分类法)。