Magento Product Attribute Get Value

后端 未结 13 1639
暗喜
暗喜 2020-12-02 05:32

How to get specific product attribute value if i know product ID without loading whole product?

13条回答
  •  慢半拍i
    慢半拍i (楼主)
    2020-12-02 06:02

    Try this

     $attribute = $_product->getResource()->getAttribute('custom_attribute_code');
        if ($attribute)
        {
            echo $attribute_value = $attribute ->getFrontend()->getValue($_product);
        }
    

提交回复
热议问题