I've moved a site from my server to my clients IIS server and ran into a problem with the plugin is_child.
I've deactivated the plugin and changed my navigation from:
<?php if (is_page(28) || is_child(28)) { ..?>
to <?php if (is_page(28) || $post->post_parent == '28') {?>
My sidebar displays the right pages if I go to the about or a child of about. But if I go to the grandchildren, then the nav doesn't work anymore. Is there a plugin other than the is_child plugin that can do this or an equivalent to $post->post_parent that will display all of the children up to 4 levels deep?