如何在Magento 1.9.2中为联系人页面添加topmenu.phtml的类新链接?
<li><a href="<?php echo $this->getBaseURl() ?>contacts">CONTACTS</a></li>
答案 0 :(得分:2)
您好关注belo代码可能会帮助您
<?php
$_currentUrl = Mage::helper('core/url')->getCurrentUrl();
$_homeUrl = Mage::helper('core/url')->getHomeUrl();
?>
<li class="level0 nav-1 level-top <?php if ($_currentUrl === $_homeUrl.'contacts'):?> active<?php endif;?>"><a href="<?php echo $this->getBaseURl() ?>contacts"><?php echo $this->__('CONTACT US') ?></a></li>