I'm working on a wordpress site, customizing the menu. I'm no php whiz, and I want the menu to sort according to the numerical order, not desc alphabetically.
<div id="navigation">
<ul>
<?php wp_list_pages('sort_column=post_title&sort_order=desc&title_li=&depth=1&')?>
</ul>
</div><!-- end id:navigation -->
Any ideas how I do this? I've tried editing the above code, but I just lose the menu altogether.