如何从 WooCommerce 产品属性分类中获取术语?

How to get the terms from WooCommerce product attribute taxonomies?

使用以下代码,我通过函数 (在我的主题 functions.php 中) 在我添加的管理产品页面中填充了一个 select 下拉项.例如,我设法获得了我所有产品属性的列表 (taxanomy):

<?php               
    $attributes =  wc_get_attribute_taxonomies();
    if($attributes) {
        foreach ( $attributes as $attribute ) {
            echo '<option value="'. $attribute->attribute_id .'">' . $attribute->attribute_label . '</option>';
        }
    }               
?>  

知道如何获取特定产品属性下所有术语的术语名称(标签)和 ID (分类法),例如 pa_test

您可以使用function get_terms()获取我们产品属性分类的所有术语,如下(此处为产品属性pa_test分类)

$taxonomy = 'pa_test';
$terms    = get_terms( array('taxonomy' => $taxonomy, 'hide_empty' => false) );

// Loop through the terms for 'pa_test' taxonomy
foreach ( $terms as $term ) {
    $term_name = $term->name; // name
    $term_slug = $term->slug; // slug
    $term_id   = $term->term_id; // Id
    $term_link = get_term_link( $term ); // Link
}