需要一些有关 Magento php 脚本的帮助....
我想写一个 if 语句,基本上说“如果当前类别的父 ID = x,则显示这个 html 块”。
我已经想出了如何为当前类别编写这个 if 语句,但不是当前的 PARENT 类别......这是代码:
<?php if (Mage::registry('current_category') && Mage::registry('current _category')->getId() == 11) : ?>
//html here
<?php endif; ?>
非常感谢您能给我的任何帮助!:)