2016-10-11 7 views

答えて

1

(PHP):これは役立つ

$products = Mage::getModel('catalog/product')->getCollection()->addAttributeToSelect('*')->addAttributeToFilter('manufacturer_attribute_code', 'manufacturer_name')->load(); 
foreach($products as $product){ 
    $product_name = $product->getName(); 
} 
print_r($product_name); 

希望。

関連する問題