voodish logo
Skip to: Content | Navigation | Site map

Display category title in Magento

Quick method of retrieving and displaying Current Category title by echo in Magento.

<?php
//Get current category from registry
$currentCategory = Mage::registry("current_category");

//Display the current Category Title
echo $currentCategory->getName();
?>

Related Articles

Comments RSS Feed

1 Comments

  1. Hasan May 27, 2011

    above posted code gives me error.
    Fatal error: Call to a member function getName() on a non-object

  2. Go to Top of the page

Leave a comment