有没有办法检查某个特定类别是否有效?我有一个硬编码导航,我想显示或隐藏一个链接,具体取决于特定类别的活动状态.也许是这样的:
// Check to see if the Sale category is active...
$specificCatID = '90';
if(isCategoryActive($specificCatID)){
// Specific category is active, do something
}
Run Code Online (Sandbox Code Playgroud)
我已经搜索过高低,并且尚未接近能够解决这个问题.任何帮助,非常感谢.
nXq*_*Xqd 13
我希望这会回答你的问题:)
$specificCatID = '90';
$category = Mage::getModel('catalog/category')->load($specificCatID);
if ($category->getIsActive()) {
}
Run Code Online (Sandbox Code Playgroud)