Skip to content

Instantly share code, notes, and snippets.

@oliwa
Last active December 5, 2018 07:11
Show Gist options
  • Save oliwa/287a507dc42a074bf62d to your computer and use it in GitHub Desktop.
Save oliwa/287a507dc42a074bf62d to your computer and use it in GitHub Desktop.
WP: is_tree
function is_tree($pid)
{
global $post;
$ancestors = get_post_ancestors($post->$pid);
$root = count($ancestors) - 1;
$parent = $ancestors[$root];
if(is_page() && (is_page($pid) || $post->post_parent == $pid || in_array($pid, $ancestors)))
{
return true;
}
else
{
return false;
}
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment