Blog Archives
Get top parent page id in wordpress.
<?php
function getTopParentPageId($page_id){
$mypage = get_page($page_id);
if ($mypage->post_parent == 0){
return $mypage->ID;
}
else{
return getTopParentPageId($mypage->post_parent);
}
}
?>