Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想检查哪个商店 id 当前处于活动状态并显示某些东西是商店 id 例如 1
我现在的代码是这样的:
<?php if (Mage::getModel('core/store')->load($storeId) == 9): ?> //code here <?php endif; ?>
但它总是返回 if 代码,无论商店 id 是什么。我认为问题出在“==”检查中。有人能告诉我正确的语法是什么吗?
获取当前商店信息使用
Mage::app()->getStore()->getStoreId();
这将解释更多
如何在 Magento 中获取商店信息?
<?php if (Mage::app()->getStore()->getStoreId() == 9): ?>
在你的情况下