Last active
August 29, 2015 13:57
-
-
Save ajithrn/9396793 to your computer and use it in GitHub Desktop.
Wprdpress: Top Parent page id
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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