By adding following lines to WordPress theme you can display the title of the parent page.
<?php $parent_title = get_the_title($post->post_parent); echo $parent_title; ?> |
By adding following lines to WordPress theme you can display the title of the parent page.
<?php $parent_title = get_the_title($post->post_parent); echo $parent_title; ?> |