作为这个问题的序言,我是一个前端开发人员,对 php 的了解有限。我试图在 Magento 的左侧导航中显示所有类别和子类别。我使用在 GitHub 上找到的方法创建了一个 phtml 文件。这非常适合拉入顶级类别,但我也想显示子类别。这是我现在拥有的代码:
<?php $_categories=$this->getCurrentChildCategories() ?>
<?php if($_categories->count()): ?>
<ul class="category-links">
<?php foreach ($_categories as $_category): ?>
<?php if($_category->getIsActive()): ?>
<li class="<?php echo $this->htmlEscape($_category->getUrlKey()) ?>">
<a href="<?php echo $this->getCategoryUrl($_category) ?>">
<?php echo $this->htmlEscape($_category->getName()) ?>
</a>
</li>
<?php endif; ?>
<?php endforeach ?>
</ul>
<? endif; ?>
这会引入如下类别:
第 1 类 第 2 类 第 3 类
但我想要的是这个
类别 1 类别 1 的子类别 1 类别 1 的子类别 2 类别 2 类别 2 的子类别 1 类别 2 的子类别 2
等等...
谁能帮我这个?
非常感谢!