$query = new WP_Query( array( 'orderby’ => 'rand’, 'posts_per_page’ => 1, 'post_type’ => 'page’, 'post_parent’ => '2′ )) ;
if ( $query->have_posts() ) {
echo ’
- ’;
- ’ . get_the_title() . ’
while ( $query->have_posts() ) {
$query->the_post();
echo ’
’;
}
echo ’
’;
} else {
// no posts found
}