Método rápido de recuperar e exibir o título da categoria atual por eco em Magento.
< ?php
//Get current category from registry
$currentCategory = Mage::registry("current_category");
//Display the current Category Title
echo $currentCategory->getName();
?>