Magento将产品列入一个类别

时间:2012-11-05 22:51:25

标签: magento magento-1.7

我认为这很简单,但我已经尝试了一段时间,没有。 我有一个类别,我想用phtml显示所有产品,但有一些自定义。

但我无法将产品纳入一个类别。我有这个代码的类别:

$_category = Mage::getModel('catalog/category')->loadByAttribute('name', 'Gifts');

我试过这个但是没有用:

$categoryId = 25;
$category = Mage::getModel('catalog/category')->load($categoryId);
$products = Mage::getModel('catalog/product')
    ->getCollection()
    ->addCategoryFilter($category)
    ->load();

我使用这个糟糕的代码让它工作,但当然有更好的方法:

$_category = Mage::getModel('catalog/category')->loadByAttribute('name', 'Gifts');
$collection = Mage::getModel('catalog/product')->getCollection()
    ->addAttributeToSelect('*'); // select all attributes
foreach ($collection as $product) {
  foreach ($product->getCategoryIds() as $category_id) {
      $category = Mage::getModel('catalog/category')->load($category_id);
      if ($category->getName()=='Gifts'){
          echo $product->getName()."<br/>";
      }
  }
}

由于

1 个答案:

答案 0 :(得分:0)

$ products = $ _category-&gt; getProductCollection();

foreach ($products as $product) {
    //for full product model
    $product = Mage::getModel('catalog/product')->load($product->getId());
}