这是层次结构
父母(id=34)子女子女子女子女1子女2子女3子女4子女
我是孩子的孩子,我只想显示孩子的兄弟姐妹,如果父母是“34”,就像这样
我在函数中使用了以下函数。php,但它不能正常工作
function is_tree($pid) { // $pid = The ID of the page we\'re looking for pages underneath
global $post; // load details about this page
if(is_page()&&($post->post_parent==$pid||is_page($pid)))
return true; // we\'re at the page or at a sub page
else
return false; // we\'re elsewhere
};
感谢Furqan Khyraj