回答我自己的问题。。。
使用is\\u树似乎很有效。
将此添加到函数:
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;
}
};
用法是:
if (is_tree(POST ID HERE)) {
// \'POST ID HERE\' is the post ID.
// do stuff
}
我见过is\\U树的各种变体,但我不够聪明,不知道其中一个是否比其他更好。