Tag : categories-images

Magento – Categories Images

Get category image:


<?php
$_category = $this->getCurrentCategory();
$_imageUrl = $this->getImageUrl();
?>

Get category thumbnail:


<?php
$_category = $this->getCurrentCategory();
$_imageUrl = $this->getThumbnail();
?>