I'm trying to retrieve the children posts (clog) by date in the descending order (from new to old), but all I get is ascending (from old to new) regardless of what I try.
Before I used to run a rsort() on the resulting array to get the order I need, but now I'm trying to implement the pagination and becomes a problem.
I'm not sure what would happen if you chose null for orderby, it *could* return the posts in the desired order, but that would be a happy accident if so, and you'd need to test. It seems to be returning the posts ordered by date under the hood, but the order argument may be ignored if orderby is null.
If 'null' doesn't help then there is no solution, I'm afraid.