如何使用类别ID检索类别名称,类别URL和类别图像?


8

我们知道,在“类别管理”页面中,我们可以上传图像并为每个类别指定一个URL。我想仅使用我已经拥有的类别ID来检索类别名称,类别URL和类别图像。有可能这样做吗?

Answers:


13

Ravi Chan,您只能执行此Magento类别模型调用。

$Category=Mage::getModel('catalog/category')->load($cat);
$name=$Category->getName();
$url=$Category->getUrl();
$image=$Category->getImageUrl()

1
检索图像呢?
拉维·陈

1
等待中............
阿米特·贝拉

-1

尝试这个:

<img src="<?php echo Mage::helper('catalog/image')->init($_product, 'small_image')->resize(197, 167); ?>" />
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.