【发布时间】:2023-03-25 14:26:01
【问题描述】:
我创建了一个 cms 页面。在内容字段中放入这一行:
{{block type="catalog/navigation" template="catalog/category/list.phtml"}}
然后用代码创建list.phtm:
<?php
$helper = Mage::helper('catalog/category');
$collection = $helper->getStoreCategories('name', true, false);
foreach ($array as $cat) {
echo '<a href="'.$this->getCategoryUrl($cat).'">'.$cat->getName().'</a>';
}
?>
但是什么也没发生。该文件有效,因为如果我输入一些文本 - 它会显示 但类别没有。我做错了什么?
【问题讨论】:
标签: php magento categories