I'm using this query to return attachments of a page.
$args = array(
'post_parent' => $post->ID,
'post_status' => 'inherit',
'post_type' => 'attachment'
);
Is there a way to adapt this in order to return attachments for the current page and the attachments of all child pages ?
