der code dazu scheint in functions.php des themes zu sein:
PHP Alles anzeigen// FRONT MENU / LIST PAGES OR CATEGORIES function lw_wp_list_pages(){ global $lw_show_categories, $lw_exclude_pages, $lw_exclude_categories; if ($lw_show_categories == "true") { $top_list = wp_list_categories("echo=0&depth=2&title_li=&exclude=".$lw_exclude_categories.""); $top_list = str_replace(array('">','</a>','<span><a','current-cat"><a'),array('"><span>','</span></a>','<a','"><a class="s"'), $top_list); return $top_list; }else{ $top_list = wp_list_pages("echo=0&depth=2&title_li=&exclude=".$lw_exclude_pages.""); $top_list = str_replace(array('">','</a>','<span><a','current_page_item"><a'),array('"><span>','</span></a>','<a','"><a class="s"'), $top_list); return $top_list; }und die codex-anleitung dazu:
http://codex.wordpress.org/Function_Reference/wp_list_pages
danach sortiert die funktion die seitennamen zuerst nach der ordnungsnummer, die man in 'dashboard' 'seiten bearbeiten' 'attribute' 'reihenfolge' einsetzen kann; und dann alphabetisch.
wenn das nicht geht, dann kann man den parameter 'sort_column' auch auch [FONT=Courier New]'menu_order'[/FONT] einstellen (im obigen code in der functions.php):
Danke für deine Mühe&Hilfe, es hat sich geklärt! :-D