Skip to content

Instantly share code, notes, and snippets.

@ajithrn
Last active August 29, 2015 13:57
Show Gist options
  • Save ajithrn/9396793 to your computer and use it in GitHub Desktop.
Save ajithrn/9396793 to your computer and use it in GitHub Desktop.
Wprdpress: Top Parent page id
<?php
if ($post->post_parent) :
$ancestors = get_post_ancestors($post->ID); //get all parent post ids in an array
$root = count($ancestors)-1; //find the count
$parent = $ancestors[$root]; //get top parent id
else:
$parent = $post->ID;
endif;
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment