Get custom product attributes in Woocommerce

后端 未结 9 795
失恋的感觉
失恋的感觉 2020-11-27 14:15

In Woocommerce, I am trying to get product custom attribute values but I fail miserably and I don\'t get anything.

So I tried:

global $woocommerce,          


        
9条回答
  •  执笔经年
    2020-11-27 14:46

    You can get the single value for the attribute with below code:

    $pa_koostis_value = get_post_meta($product->id, 'pa_koostis', true);
    

提交回复
热议问题