magento:带链接的垂直导航类别

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了magento:带链接的垂直导航类别相关的知识,希望对你有一定的参考价值。

  1. this code works for vertical navigation category�
  2.  
  3. <?php
  4.  
  5. /**
  6.  
  7.  * Top menu for store
  8.  
  9.  *
  10.  
  11.  * @see Mage_Catalog_Block_Navigation
  12.  
  13.  */
  14.  
  15. ?>
  16.  
  17.  
  18.  
  19. <div class=�box_mini_vert�>
  20.  
  21. <div id=�vertical-nav-container �>
  22.  
  23. <?php foreach ($this->getStoreCategories() as $_category): ?>
  24.  
  25. <?php foreach ($this->getCurrentChildCategories() as $_categories): ?>
  26.  
  27. /*in this line $_categories->getUrl() is present so you can get link of your categories*/
  28.  
  29. <ul class=�vert_left_list_style�>
  30.  
  31. <li><b><?php echo �<br/>� ?><a href=�<?php echo $_categories->getUrl() ?>�><?php echo $_categories->getName(); ?></a></b></li>
  32.  
  33. </ul>
  34.  
  35. <ul>
  36.  
  37. <?php foreach ($_categories->getChildren() as $childcategory):?>
  38.  
  39. <?php echo $this->drawItem($childcategory) ?>
  40.  
  41. <?php endforeach; ?>
  42.  
  43. </ul>
  44.  
  45. <?php endforeach; ?>
  46.  
  47. </div>
  48.  
  49. </div>

以上是关于magento:带链接的垂直导航类别的主要内容,如果未能解决你的问题,请参考以下文章

Magento 中的子类别列表

导航中的 Magento 类别和产品 - 子项

删除magento中的空类别

从Magento中的分层导航取消设置类别

magento导航获取父类别并具有常量父类别

控制 magento 左侧导航的渲染位置