Skip to content

Instantly share code, notes, and snippets.

@michaeloeser
Created January 22, 2013 15:29
Show Gist options
  • Save michaeloeser/4595518 to your computer and use it in GitHub Desktop.
Save michaeloeser/4595518 to your computer and use it in GitHub Desktop.
List subpages even if on a subpage
<!--display subpages if any -->
<?php
if($post->post_parent)
$children = wp_list_pages("title_li=&child_of=".$post->post_parent."&echo=0");
else
$children = wp_list_pages("title_li=&child_of=".$post->ID."&echo=0");
if ($children) { ?>
<div class="sidebar_widget subpages">
<ul>
<?php echo $children; ?>
</ul>
</div>
<?php } ?>
<!-- end .subpages -->
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment