wp_nav_menu sort order?
I just found this handy little function that ads the ability to reverse the menu output order. it might come in handy: /** * Enables a ‘reverse’ option for wp_nav_menu to reverse the order of menu * items. Usage: * * wp_nav_menu(array(‘reverse’ => TRUE, …)); */ function my_reverse_nav_menu($menu, $args) { if (isset($args->reverse) && $args->reverse) { … Read more