Often times, a custom theme for WordPress will require a dynamic content that reflects a relationship to a top level page of a site.
Is there a Conditional Tag that will check if the current page is a grand-child (or separated by further generations) by ID?
Turns out there is an excellent function that has been passed around the WordPress forums
is_tree()
To use it in template, just give it the ID you want to check the current page against, and it will return true if the current page is a descendant.
<?php if(is_tree(12)){echo 'foobar';} ?>