Magento回显所有类别链接
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Magento回显所有类别链接相关的知识,希望对你有一定的参考价值。
<?php $category = Mage::getModel('catalog/category'); $tree = $category->getTreeModel(); $tree->load(); $ids = $tree->getCollection()->getAllIds(); foreach($ids as $id) { if($id != 1) { $cat = Mage::getModel("catalog/category")->load($id); $subcats = $cat->getChildren(); if ($subcats) { ?> <a href="<?php echo $this->getUrl() ?>">Home</a> | <?php { $_category = Mage::getModel('catalog/category')->load($subCatId); if($_category->getIsActive()) { $caturl = $_category->getURL(); $catname = $_category->getName(); echo '<a href="'.$caturl.'" title="'.$catname.'">'.$catname.'</a> |'." "; } } ?> <?php } } } ?>
以上是关于Magento回显所有类别链接的主要内容,如果未能解决你的问题,请参考以下文章