admin管理员组

文章数量:1122832

Is it posible to get the parent ID of an single page.... I mean not a Page I mean an is_single()... page.

I have a page witch contains some custom posts and when I click on one of these i came to the single page of these entree. I would like to get the permalink of the parent page, the page i come from.

Is it posible to get the parent ID of an single page.... I mean not a Page I mean an is_single()... page.

I have a page witch contains some custom posts and when I click on one of these i came to the single page of these entree. I would like to get the permalink of the parent page, the page i come from.

Share Improve this question asked May 14, 2013 at 22:20 user1606423user1606423 414 bronze badges 0
Add a comment  | 

1 Answer 1

Reset to default 0

For a hierarchical post type, you can use $post->post_parent and get_permalink(), perhaps like so:

<?php
global $post;
$parent_permalink = get_permalink( $post->post_parent );
?>
<a href="<?php echo $parent_permalink; ?>">Parent Post</a>

本文标签: pagesParent for a single (singlephp)