• Resolved casagli

    (@casagli)


    Hi all, I have installed the latest version of wordpress and veryplaintxt theme and in my blog i cannot see any subpages under the menu of the single pages.
    I tried to search into the code but there are no differences between index.php and page.php before the header call.

Viewing 2 replies - 1 through 2 (of 2 total)
  • I don’t think the theme supports sub-page listing. If it uses wp_list_pages, you may have to amend the tags parameters.

    Thread Starter casagli

    (@casagli)

    i’ve edited page.php by adding

    <?php
      $children = wp_list_pages('title_li=&child_of='.$post->ID.'&echo=0');
      if ($children) { ?>
      <ul>
      <?php echo $children; ?>
      </ul>
      <?php } ?>

    thanks esmi

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘veryplaintxt sub pages not showing in menu’ is closed to new replies.