Magento - 从CMS块或页面获取类别描述

时间:2013-09-01 23:47:23

标签: magento magento-1.13

在主页上,我使用以下代码显示特定类别的一些产品:

{{block type="catalog/product_list" category_id="213" column_count="6" template="catalog/product/list.phtml"}}

我是否可以使用块来通过CMS页面或块呈现类别描述?

1 个答案:

答案 0 :(得分:5)

没有内置功能,但您可以自己添加一个块。在主页内容中添加:

{{block type="core/template" template="catalog/category/description.phtml" category_id="213"}}

现在使用以下内容

创建文件 app/design/frontend/{interface}/{theme}/template/catalog/category/description.phtml
<?php $categoryId = $this->getCategoryId();?>
<?php $category = Mage::getModel('catalog/category')->setStoreId(Mage::app()->getStore()->getId())->load($categoryId);?>
<?php if ($category->getId() && $category->getIsActive() && $_description = $category->getDescription()) : ?>
    <?php echo $this->helper('catalog/output')->categoryAttribute($category, $_description, 'description')?>
<?php endif;?>