I am ordering my posts by using a custom field "order".
For each post the value of order is a number, which dictates where I want the post to be positioned.
I have the following:
query_posts('category_name=category&meta_key=order&orderby=meta_value&order=ASC');
This seems to have worked fine up until post #10, this posts positions itself at 2nd in the list.
Any ideas as to where I am going wrong?