WordPress: Keep order of query_posts list of post ID’s using post__in

post__in doesn’t affect the ordering at all.

You can achieve the order you want by hooking into the ‘posts_orderby’ filter and use MySQL’s FIND_IN_SET() function.

tech