X

How to display parent page title in WordPress

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;
?>