0

需要一些有关 Magento php 脚本的帮助....

我想写一个 if 语句,基本上说“如果当前类别的父 ID = x,则显示这个 html 块”。

我已经想出了如何为当前类别编写这个 if 语句,但不是当前的 PARENT 类别......这是代码:

<?php if (Mage::registry('current_category') && Mage::registry('current _category')->getId() == 11) : ?>
    //html here
<?php endif; ?>

非常感谢您能给我的任何帮助!:)

4

1 回答 1

1

尝试这个

    <?php 
        $cat = Mage::registry('current_category'); 
        $parentCat = $cat->getParentCategory();
        if ( $cat && $parentCat && $parentCat->getId() == 11) : ?>

        //html here

    <?php endif; ?>
于 2012-04-23T19:56:52.563 回答