Topic: Sort children?
Here's my children navigation:
<?php $artikelen = $this->children(array()); ?>
<ul>
<?php foreach ($artikelen as $artikel): ?>
<li<?php echo (url_start_with($artikel->url)) ? ' id="current_sub"': null; ?>><?php echo $artikel->link(); ?></li>
<?php endforeach; ?>
</ul>But how can I make its order ascending/descending?

