嗨,我在 Magento 1.6.2.0 中有一个 magento 站点。我想根据我创建的类别设置页脚链接。我在“页脚 cms”中添加了一个链接
<li><a href="#">Living Room Furniture</a></li>
如何使用类别 ID/名称放置链接(href)?
嗨,我在 Magento 1.6.2.0 中有一个 magento 站点。我想根据我创建的类别设置页脚链接。我在“页脚 cms”中添加了一个链接
<li><a href="#">Living Room Furniture</a></li>
如何使用类别 ID/名称放置链接(href)?
在 footer.phtml 中使用以下代码
<?php $helper = $this->helper('catalog/category') ?>
<?php foreach ($helper->getStoreCategories() as $_category): ?>
<a href="<?php echo Mage::getModel('catalog/category')->setData($_category->getData())->getUrl(); ?>" title="<?php echo $_category->getName() ?>"><?php echo $_category->getName() ?></a>
<?php endforeach ?>
使用以下代码通过 CMS 调用模板文件。
{{block type="catalog/navigation" template="folder/filename.phtml"}}
在该文件中,您可以编写代码来列出类别。
<?php $_helper = $this->helper('catalog/category') ?>
<?php foreach ($_helper->getStoreCategories() as $_category): ?>
<a href="<?php echo Mage::getModel('catalog/category')->setData($_category->getData())->getUrl(); ?>" title="<?php echo $_category->getName() ?>"><?php echo $_category->getName() ?></a>
<?php endforeach ?>
它仅列出根类别下的主要类别