每个产品的magento属性前端属性

时间:2014-02-04 13:44:56

标签: php magento

我需要为所有产品设置属性属性,例如"用于产品列表",每个产品,而不是全局。 有没有办法实现这种功能?

1 个答案:

答案 0 :(得分:0)

获取属性集......

$attributes = Mage::getModel('eav/config')
    ->getEntityType(Mage_Catalog_Model_Product::ENTITY)
    ->getAttributeCollection()
    ->addSetInfo();
foreach ($attributes as $attribute)
{
    if ($attribute->getData('used_in_product_listing') == 1)
    {
        echo "{$attribute->getFrontendLabel()}:\n";


        echo "\n";
    }
}