2

我想检查哪个商店 id 当前处于活动状态并显示某些东西是商店 id 例如 1

我现在的代码是这样的:

<?php if (Mage::getModel('core/store')->load($storeId) == 9): ?>
//code here
<?php endif; ?>

但它总是返回 if 代码,无论商店 id 是什么。我认为问题出在“==”检查中。有人能告诉我正确的语法是什么吗?

4

2 回答 2

1

获取当前商店信息使用

 Mage::app()->getStore()->getStoreId();

这将解释更多

如何在 Magento 中获取商店信息?

于 2012-11-21T12:58:09.303 回答
1
<?php if (Mage::app()->getStore()->getStoreId() == 9): ?>

在你的情况下

于 2012-11-21T12:59:18.790 回答