Showing posts with label Magento get attribute value. Show all posts
Showing posts with label Magento get attribute value. Show all posts

Thursday, 30 October 2014

Get custom attribute value in Magento


Get custom attribute value in Magento

<?php
    $attribute = $_product->getResource()->getAttribute('attribute_code');
    if ($attribute)
    {
        echo $attribute_value = $attribute->getFrontend()->getValue($_product);
    }
?>