显示Woocommerce存档页面中变体的大小产品属性值

时间:2018-08-08 23:02:59

标签: php wordpress woocommerce product hook-woocommerce

在Woocommerce中,我添加了一个挂钩函数,该函数在Woocommerce存档页面上显示分配给变量产品的变体的产品属性:

add_action( 'woocommerce_after_shop_loop_item', 'stock_variations_loop' );
function stock_variations_loop(){
    global $product;

    if ( $product->get_type() == 'variable' ) {
        foreach ($product->get_available_variations() as $key) {
            $attr_string = '';

            foreach ( $key['attributes'] as $attr_name => $attr_value) {
                $attr_string[] = $attr_value;
            }
            if ( $key['max_qty'] > 0 ) { 
                echo '<div class="sizeVariantCat">' . implode(', ', $attr_string).'</div>'; 
            } 
        }
    }
}

它工作正常,但是某些数据比较混乱……我只想显示变量值的“尺寸”产品属性,而不是所有具有“尺寸”属性的产品。

1 个答案:

答案 0 :(得分:3)

如果您要针对变体“尺寸”定位产品属性,以从变量产品的产品变体集中获取相应的值,请尝试以下操作:

add_action( 'woocommerce_after_shop_loop_item', 'display_attribute_size_for_variations' );
function display_attribute_size_for_variations(){
    global $product;

    // HERE the taxonomy for the targeted product attribute
    $taxonomy = 'pa_size';

    if ( $product->get_type() == 'variable' ) {
        $output = array();
        foreach ($product->get_available_variations() as $values) {
            foreach ( $values['attributes'] as $attr_variation => $term_slug ) {
                // Targetting "Size" attribute only
                if( $attr_variation === 'attribute_' . $taxonomy ){
                    // Add the size attribute term name value to the array (avoiding repetitions)
                    $output[$term_slug] = get_term_by( 'slug', $term_slug, $taxonomy )->name;
                }
            }
        }
        if ( sizeof($output) > 0 ) {
            echo '<div class="'.$taxonomy.'-variations-terms">' . implode( ', ', $output ).'</div>';
        }
    }
}

代码进入活动子主题(或主题)的function.php文件中。经过测试并可以正常工作。