From the Codex, I'm using this function to return all children from a page ID without using SQL queries.
Usage:
<?php get_page_children( $page_id, $pages ) ?>
$page is defined as a "List of pages' objects".
What are examples of page objects I would use in this case?
page,postorcustom_post_type. – Rutwick Gangurde Nov 25 '11 at 15:50global $post; print_r($post)on any page, you'll see it as a post object. But the type is what differentiates them. – Rutwick Gangurde Nov 25 '11 at 17:22