0

在我的 Magento 主页上,我尝试列出某个类别的子类别,其中包含来自自定义类别属性的一些值。该列表正在运行,但我无法从自定义类别属性中获取值。

输出为空白。我做错了什么?相关属性为 category_subtitle 和 category_slidertext。

<?php
    $_helper = Mage::helper('catalog/category');
    $productsChildren = Mage::getModel('catalog/category')->getCategories(3);
    foreach ($productsChildren as $productCat) {
?>
<li>
    <div class="content-wrapper">
        <div class="content">
            <h2><?php $_category_subtitle = $productCat->getData('category_subtitle'); if($_category_subtitle): ?><span><?php echo $_category_subtitle; ?></span><?php endif; ?></h2>
            <?php $_category_slidertext = $productCat->getData('category_slidertext'); if($_category_slidertext): ?><h3><?php echo $_category_slidertext; ?></h3><?php endif; ?>
            <a href="<?php echo $_helper->getCategoryUrl($productCat) ?>"><?php echo $this->__('View our products') ?> &gt;</a>
        </div>
    </div>
</li>
<?php } ?>
4

1 回答 1

0

尝试:

 $productsChildren = Mage::getModel('catalog/category')->getCategories(3,0,false,true,false);
 $productsChildren->addAttributeToSelect('category_subtitle')
                  ->addAttributeToSelect('category_slidertext');

$productsChildren如果是类别集合的实例,那将起作用。

于 2013-01-15T18:07:20.227 回答