2013-01-15 115 views
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 } ?> 

回答

0

嘗試:

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

如果$productsChildren是集合類的一個實例,將工作。

相關問題