问问题
177 次
1 回答
0
//if you are in category or product page
$currentCategory = Mage::registry('current_category');
//or load category if you are in pages other than product or category page
// $currentCategory = Mage::getModel('catalog/category')->load(12);
$blockName = $currentCategory->getName().'-header';
echo Mage::getModel(‘cms/block’)-> load($blockName)-> getContent();
如果您在产品或类别页面中,您可以使用 Magento 注册表加载当前类别。如果它在其他页面中,那么您需要通过其他方式加载类别。
于 2015-03-12T07:47:38.973 回答