Subpages but not ate Homepage

Feed 1 posts, 2 voices

Avatar
9 posts

Can you help me please how to include Parent’s children at sidebar but not at homepage?
With one condition: If parent has not any children, it does not show.

 
Avatar
58 posts
<?php
if( $this->childrenCount() && $this->slug() != '' ):
  echo "<ul>";
  foreach($this->children() as $child):
    ?>
    <li><?php echo $child->link(); ?></li>
    <?php
  endforeach;
  echo "</ul>";
endif;
?>

Place this (make changes you need first) in your sidebar.