• Resolved szejia

    (@szejia)


    I’m using WordPress 2.8.4

    How do i add a -click here to go back to “parent page”- link on all my child pages?

    I can’t seem to find the parameters or any topic on this.

    Please help!

Viewing 2 replies - 1 through 2 (of 2 total)
  • Try:

    <?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="">'.get_the_title($parent->ID).'</a>';
    }
    ?>
    Thread Starter szejia

    (@szejia)

    Great! this works! Thanks ??

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Add a “back to parent page” link on all child pages’ is closed to new replies.