Magento 获取分类的父分类和子分类
在 Magento 目录的分类页面里,经常需要左侧导航获取到父分类和子分类,可以用以下方法: 打开 app/your_package/your_themes/template/catalog/navigation/left.phtml
显示父分类的分类名
$currentCat = Mage::registry('current_category');
//如果是根目录,则显示当前目录
if ( $currentCat->getParentId() == Mage::app()->;getStore()->getRootCategoryId() )
//显示当前目录名
echo $this->getCurrentCategory()->getName() ;
else
{
//显示当前目录的父分类名
echo $this->getCurrentCategory()->getParentCategory()->getName() ;
}
显示的子分类可以根据当前的父分类的基础上
$currentCat = Mage::registry('current_category');
if ( $currentCat->getParentId() == Mage::app()->getStore()->getRootCategoryId() )
{
// 当前分类是顶级分类
$loadCategory = $currentCat;
}
else
{
// 当前分类是顶级分类的的一个子分类,载入当前分类的父分类
$loadCategory = Mage::getModel('catalog/category')->load($currentCat->getParentId());
}
$subCategories = explode(',', $loadCategory->getChildren());
foreach ( $subCategories as $subCategoryId )
{
$cat = Mage::getModel('catalog/category')->load($subCategoryId);
if($cat->getIsActive())
{
echo '<a href="<?php echo $this->getCategoryUrl($cat) ?>">'.$cat->getName().'</a>';
}
}
转载请注明: 转载自Ryan 是菜鸟 | LNMP 技术栈笔记
如果觉得本篇文章对您十分有益,何不 打赏一下
本文链接地址: Magento 获取分类的父分类和子分类
本作品采用知识共享署名-非商业性使用 4.0 国际许可协议进行许可