您很可能忘记在第一行拆分类别 ID。尝试这个:
<?php $currentID = explode(',', Mage::getSingleton('cms/page')->getContentHeading()); ?>
<?php foreach($currentID as categoryid): ?>
<?php
$category = new Mage_Catalog_Model_Category();
$category->load($categoryid);
$collection = $category->getProductCollection();
$collection->addAttributeToSelect('*');
foreach ($collection as $_product) { ?>
<li>
</li>
<?php } ?>
<?php endforeach;?>
但是,无论如何,这确实是一种糟糕的编码风格,您需要将此类代码移动到单独的块中并使用一些缓存来防止无用的过载。我不建议在生产中使用它。
一些建议,
- 用Mage::getModel替换new
- 如果您使用类别集合(少数类别),使用 Mage::getModel('catalog/category')->getCollection() 并使用 filter 'in' 过滤它是有意义的(参见下面的示例)
- 尽量避免使用 addAttributeToSelect('*'),这是相当昂贵的操作(在资源使用的意义上)
这个好一点
<?php
$ids = explode(',', Mage::getSingleton('cms/page')->getContentHeading());
$categories = Mage::getModel('catalog/category')->getCollection()
->addAttributeToFilter('entity_id', array('in' => $ids));
foreach($categories as $category) {
$collection = $category->getProductCollection();
$collection->addAttributeToSelect('needed_attribute_code');
foreach ($collection as $_product) {
?>
<li>
</li>
<?php } } ?>
但仍然看起来很难看,因为它在模板中。这样的代码应该在块类中。