Skip to content

Instantly share code, notes, and snippets.

@mrfoxtalbot
Created April 30, 2016 23:40
Show Gist options
  • Save mrfoxtalbot/574c590559213682928325347c7884b0 to your computer and use it in GitHub Desktop.
Save mrfoxtalbot/574c590559213682928325347c7884b0 to your computer and use it in GitHub Desktop.
Get top level ancestor in hierarchical post
function get_topmost_parent($post_id){
$parent_id = get_post($post_id)->post_parent;
if($parent_id == 0){
return $post_id;
}else{
return get_topmost_parent($parent_id);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment