Back to Parent. Back to Grandparent
-
Hi all,
I want to provide back links on a site that has three levels of content (all pages not posts) eg.
> Section 1
> Page A
> subpage i
> subpage ii
> subpage iii
> Page B
> subpage iv
> subpage v
> subpage vi
> Section 2
> Page C
> subpage vii
> subpage viiiand so on.
When I am on Page A I want to provide a link “Back to Section 1”
If I am on subpage ii I want to provide links “Back to Section 1 / Back to Page A”
I’m doing this for a mobile browser and would rather not use plugins etc for page weight. By using:
<a href="<?php echo get_permalink($post->post_parent); ?>">Back to <?php echo get_the_title($post->post_parent); ?></a>
I can get the link to the Section, but not the Page too.
Any help greatly appreciated!
- The topic ‘Back to Parent. Back to Grandparent’ is closed to new replies.