My menu works fine as it is, but its currently using the ASC order. I tried changing it to DESC with the code below:
$args = array( 'numberposts' => 9, 'order' => 'DESC' );
$myposts = get_posts( $args );
any reason why the 'order' argument doesnt work?
array_reversethe result – Trey Jun 17 '12 at 16:14