在标题导航magento中显示cms页面

时间:2013-01-10 08:42:11

标签: php zend-framework magento show

您好,我需要在我的项目中以标题

动态显示CMS页面链接

有人可以建议我怎么做?

1 个答案:

答案 0 :(得分:1)

代码我们可以在magento中显示 magento cms页面动态导航 已启用状态。我们只需要在标题 topnav 文件中 这个代码

<?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>