Magento Product Attribute Get Value

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

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

13条回答
  •  挽巷
    挽巷 (楼主)
    2020-12-02 06:00

    A way that I know of:

    $product->getResource()->getAttribute($attribute_code)
            ->getFrontend()->getValue($product)
    

提交回复
热议问题