0

嗨,我需要在我的项目中在标题中动态显示 CMS 页面链接,

任何人都可以建议我如何做到这一点?

4

1 回答 1

1

使用代码,我们可以在启用状态的 magento 导航中动态显示magento cms 页面。我们只需要将这段代码放在headertopnav文件中

<?php $collection = Mage::getModel('cms/page')->getCollection()->addStoreFilter(Mage::app()->getStore()->getId());?>
<?php  $collection->getSelect()->where('is_active = 1'); ?>
<ul id="nav">
<?php foreach ($collection as $page): ?>
<?php $PageData = $page->getData(); ?>
<?php// print_r($PageData);?>
<?php if($PageData['identifier']!='no-route' && $PageData['identifier']!='enable-cookies' && $PageData['identifier']!='home2') { ?>
<li>
<a href="/magento/index.php/<?php echo $PageData['identifier']?>"><span><?php echo $PageData['title'] ?></span></a>
</li>
<?php } ?>
<?php endforeach; ?>
</ul>
于 2013-01-29T12:06:36.903 回答