How to get all attribute options from attribute code
Use the following code to retrieve all attribute options from attribute code
try {
$attr_code = 'color';
$attributeInfo=Mage::getSingleton('eav/config')
->getAttribute(Mage_Catalog_Model_Product::ENTITY, $attr_code);
$attributeOptions = $attributeInfo->getSource()->getAllOptions(false);
foreach ($attributeOptions as $key=>$attributeOption) {
echo 'Label: '.$attributeOption['label'];
echo 'Value: '.$attributeOption['value'];
}
} catch (Exception $e) {
echo $e->getMessage();
}
Happy coding 🙂
Be the first to comment.