我正在使用带有水平菜单的Magento。此菜单显示所有父类别。我想要的是显示点击的父类别的子类别。
我怎么能意识到这一点?
提前致谢!
答案 0 :(得分:1)
您可以使用以下代码在父类别页面中获取子类别:
<?php
$parentCategory = Mage::registry('current_category');
if($parentCategory){
$catId = $parentCategory->getId();
$category = Mage::getModel('catalog/category')->load($catId);
$childCategories = $category->getChildrenCategories();
foreach($childCategories as $_category){
print_r($_category->getData());
}
}
希望这有帮助。
由于