我想根据 cms 页面 url 创建以下条件语句,为我的 magento 商店显示不同的背景图像。语法看起来不错,但没有出现。
<?php
if(Mage::app()->getFrontController()->getRequest()->getRouteName() == 'cms'):
$Page = Mage::getSingleton('cms/page')->getTitle();
endif;
if($Page == 'about-us'):
//echo $this->getChildHtml('bg_aboutus');
echo '<div class="bg"><img src="' . $this->getSkinUrl("images/about_us.jpg") . '" alt="office interiors" ></div>';
endif;
?>