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?
according to the codex that is the default… if all else fails you could just
array_reversethe result