1

我需要帮助。我使用此代码在 Magento 的几个页面上获取产品信息下的类别链接:

<?php $categories = $_product->getCategoryIds(); ?>
<span>In </span>
<?php $i=1; foreach($categories as $k => $_category_id): ?>
<?php if($i>1) {break;} ?>
<?php $_category = Mage::getModel('catalog/category')->load($_category_id) ?> 
                <a  class="in-category" href="<?php echo $_category->getUrl() ?>"><?php echo $_category->getName() ?></a>
<?php $i++; endforeach; ?>

在这里你可以看到它:http://192.241.178.130/new_arrivals

我遇到的问题是我希望脚本显示最接近产品的类别,但它显示的是根类别(网站的默认类别) M 谢谢。

4

2 回答 2

4

尝试这样的事情:

<?php
$categoryIds = $_product->getCategoryIds();
$categories = Mage::getModel('catalog/category')
    ->addAttributeToSelect('url_key')//add url key to select
    ->addAttributeToSelect('name')//add name to select
    ->getCollection() //get categories as collection
    ->addAttributeToFilter('entity_id', $categoryIds)//filter only by selected ids
    ->addAttributeToFilter('is_active', 1)//get only active categories
    ->addAttributeToFilter('level', array('gte'=>2))//ignore root category and 'root of roots'
    ->setOrder('level', 'desc');//sort by level descending
$mainCategory = $categories->getFirstItem();//get only the category lowest in the tree
if ($mainCategory->getId()) : ?>
    <a  class="in-category" href="<?php echo $mainCategory->getUrl() ?>"><?php echo $mainCategory->getName() ?></a>
<?php endif;?>
于 2013-08-25T20:31:31.150 回答
0

您可以使用 array_pop,而不是使用 foreach 遍历数组一次。无论如何,函数 getCategoryIds() 将返回产品所在的所有类别的数组。这还包括父类别并且按逻辑顺序排列。具有最低 id 的类别将首先显示。

也许这样的事情会为你工作:

<?php $_category_id = array_pop($_product->getCategoryIds()); ?>
<span>In </span>
<?php $_category = Mage::getModel('catalog/category')->load($_category_id) ?> 
<a  class="in-category" href="<?php echo $_category->getUrl() ?>">
    <?php echo   $_category->getName() ?>
</a>
于 2013-08-26T07:45:50.100 回答