Show subpages even if on a subpage in wordpress theme

Using following code you can able to display the subpages of parent page. <?php $subpages = wp_list_pages(‘title_li=&child_of=’.$post->ID.’&echo=0′); ?> <?php if ($subpages) { ?> <ul> <?php echo $subpages; ?> </ul> <?php } ?> Note: This code you need to copy paste … Continue reading