I created a function that retrieves all parent posts of a post and i'm ordering by post_date.
select * from {$wpdb->posts} where post_type = 'page' and post_status = 'publish' and post_parent = " . ($parent == 0 ? $page_id : $parent) . ' order by post_date asc
I the WP backend the posts are ordered differently and it's not by publish date nor by ID.
Any idea how i can order my query so that i will have the same order as in the backend?
Thanks, Radu