我正在使用此代码在左侧显示商店类别。
<?php
foreach ($this->getStoreCategories() as $_category):
//echo $_category['entity_id'];
//echo $currentCategoryId= $_category->getId();
//echo $this->$_category->getId();?>
<?php //if($currentCategoryId!=37) :?>
<li> <a href="<?php echo $this->getCategoryUrl($_category) ?>"<?php if ($this->isCategoryActive($_category)): ?> class="current"<?php endif; ?>><?php echo $this->drawItem($_category) ?></a></li> <?php //endif;
?>
<?php endforeach ?>
我想在循环中获取所有类别id以进行比较条件。 我想隐藏父类别..
谢谢