Get the meta description and page title on any page in Magento
问题 How can I get the meta description and page title of any page in Magento (product page, category page, CMS page and any other page). This is for Magento 1.9. I have tried something along the lines of: if( Mage::registry('current_product') ){ // product page $product = Mage::registry('current_product'); $title = $product->getMetaTitle(); $descr = $product->getDescription(); }elseif( Mage::registry('current_category') ){ // category page $category = Mage::registry('current_category'); $title =