Categories: Magento

How to get category name by category id in Magento

There are scenarios when you look for information using category id in Magento and there are Name, description, url, thumbnail, level and parent category that can be fetched from this code respectively. These are the following ways by which we can fetch Display category name by category id in Magento.


Magento Get all Categories name and description

<?php

$categoryId = 10; // Change category id according to your requirements

// display name and other detail of all category 
$_category = Mage::getModel('catalog/category')->load($categoryId);

?>

Magento get category name

<?php

// category name with this code
echo $categoryName = $_category->getName();

?>

Magento get category description

<?php

// For category description 
echo $categoryDescription = $_category->getDescription();

?>

Magento get category URL

<?php

// For category url 
echo $categoryUrl = $_category->getUrl();

?>

Magento get category Image URL

<?php

//For Category Image
echo $image=$Category->getImageUrl()

?>

Magento get category Thumbnail

<?php

// For category thumbnail 
echo $categoryThumbnail = $_category->getThumbnail();

?>

Magento get category Level

<?php

// For category level 
echo $categoryLevel = $_category->getLevel();

?>

Magento get parent category id

<?php

// For parent category
echo $parentCategoryId = $_category->getParentId();

?>

You can get all the specific information using these codes only!


Rohan pathak

Recent Posts

A Whiff of Childhood: Rediscovering Play at a Toy Store in Delhi

Every generation has its own version of “the perfect toy.” For some of us, it was a wooden spinning top.…

56 mins ago

The Joy of Thoughtful Play – Discovering the Best Toy Shop in Noida

In a world dominated by screens and fast-paced routines, the need for intentional, meaningful play has never been more important.…

1 day ago

Rediscovering the Magic of Play – A Deep Dive into Toy Shopping in Delhi

In a world filled with digital distractions, there’s something inherently heartwarming and refreshing about walking into a toy store in…

2 days ago

A Day of Toys, Talks, and Tiny Wonders: Conversations Between a Mom and Her Daughter

“Mom, why didn’t you have unicorn pouches when you were little?” My daughter asked this while clutching her new sparkly…

3 days ago

Crafting Childhood Joy: The Rise of Thoughtful Toy Shopping in Delhi

In the bustling heart of India’s capital, amid skyscrapers, bazaars, and malls, there lies a world that lights up not…

6 days ago

The Best Toy Shop in Noida: A Wonderland for Kids and Collectors

Toys are more than just playthings; they shape childhood memories, enhance creativity, and support early learning. Whether it’s a Silicone…

1 week ago