• Resolved mike62

    (@mike62)


    The following code, when pasted into the template sidebar, works perfectly, but doesn’t work when using this plugin.

    <?php
    //show parent page
    $parent_title = get_the_title($post->post_parent);?>
    <a href="<?php echo get_permalink($post->post_parent) ?>" class="parent"><?php echo $parent_title;?></a>
    
    <?php
    //show child pages
      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) { ?>
      <ul id="subnav">
      <?php echo $children; ?>
      </ul>
      <br clear="all" />
    <?php } ?>

Viewing 1 replies (of 1 total)
  • Plugin Author Samuel Wood (Otto)

    (@otto42)

    www.ads-software.com Admin

    You don’t have $post defined.

    The contents of the widget do not run in the global context like templates do. If you want access to global variables, you have to declare them.

    In your case, adding global $post; to the beginning of your code would probably work.

Viewing 1 replies (of 1 total)
  • The topic ‘[Plugin: PHP Code Widget] Listing subpages not working’ is closed to new replies.