[转]Magento 获取当前分类名称
<?php
$currentCat = Mage::registry('current_category');
var_dump($currentCat->getName());
?>
From: https://blog.csdn.net/github_26672553/article/details/51576241
<?php
$currentCat = Mage::registry('current_category');
var_dump($currentCat->getName());
?>
From: https://blog.csdn.net/github_26672553/article/details/51576241