Magento-打印一个类别navi,隐藏特定的类别
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Magento-打印一个类别navi,隐藏特定的类别相关的知识,希望对你有一定的参考价值。
Manually print out a category-navigation in a magento frontend template. within "stristr" you can enter an array of category-ids that should be hidden from display.
<?php if($_menu): ?> <div class="nav-container"> <ul id="nav"> <?php foreach ($this->getStoreCategories() as $_category): ?> <?php echo $this->drawItem($_category) ?> <?php endif ?> <?php endforeach ?> <?php// echo $_menu ?> </ul> </div> <?php endif ?>
以上是关于Magento-打印一个类别navi,隐藏特定的类别的主要内容,如果未能解决你的问题,请参考以下文章