Likewise, to get any attribute value, we need to first load the product object.

Then get the attribute value.

<?php
$product = Mage::getModel(‘catalog/product’)->load($productId);
$attribute = ‘manufacturer’;
$getAttributeValue = $product->getResource()
                      ->getAttribute($attribute)
                      ->getFrontend()->getLabel($product);
echo $getAttributeValue;

?>

 

Categorized in: