Showing posts with label How to get custom attribute value in Magento. Show all posts
Showing posts with label How to get custom attribute value in Magento. 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);
    }
?>