Created
March 23, 2013 05:02
-
-
Save spencejs/5226526 to your computer and use it in GitHub Desktop.
Link Back To Parent Page
This file contains 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 | |
$this_page = get_post($id); | |
$parent_id = $this_page->post_parent; | |
if ($parent_id) { | |
$parent = get_page($parent_id); | |
echo '<a href="'.get_permalink($parent->ID).'" title="back to Portraits & Stories list">« back to Portraits & Stories list</a>'; | |
} | |
?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment