<?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="<?php echo $this->getUrl('').$PageData['identifier']?>"><span><?php echo $PageData['title'] ?></span></a> </li> <?php } ?> <?php endforeach; ?> </ul>
Categories: Magento
0 Comments