Affiche le sous menu de la page principale

<ul>
<?php foreach($this->find('/')->children() as $menu): ?>
<li><?php echo $menu->link(); ?></li>
<?php endforeach; ?>
</ul>

Affiche le sous menu de la page en cours

<?php $page_submenu = $this->find('/MAPAGE/'); ?>
<ul> <?php foreach ($page_submenu ->children(array()) as $menuPage): ?>
<li><?php echo $menuPage->link() ?></li>
<?php endforeach; ?>
</ul>

/MAPAGE/ est le nom de la page en cours

Affiche le sous menu de la sous page en cours

<?php $next_submenu = $this->find('/MAPAGE/MASOUSPAGE/'); ?>
<ul>
<?php foreach ($next_submenu ->children(array()) as $nextPage): ?>
<li><?php echo $nextPage->link() ?></li>
<?php endforeach; ?>
</ul>

/MAPAGE/ est le nom de la page supérieure et /MASOUSPAGE/ la page en cours

Affiche les 5 dernières pages créées

<?php $last_result = $this->children(array('limit' => 5, 'order' => 'created_on DESC')); ?>

Pour afficher les 5 premières, remplacer DESC par ASC

Affiche les pages 3 et 4 (ordre d'affichage)

<?php $last_result = $this->children(array('offset' => 2, 'limit' => 2)); ?>

Attention, le calage commence 0 et pas à 1