获取 drop down Menu 所有Options value 的方法

$attribute_code = “designers”;

$attribute_details = Mage::getSingleton(“eav/config”)->getAttribute(“catalog_product”, $attribute_code);

$options = $attribute_details->getSource()->getAllOptions(false);

Foreach($options as $option){

echo $option[“value”];

echo $option[“label”];

Leave a Comment