Forum Replies Created

Viewing 2 replies - 1 through 2 (of 2 total)
  • if($post->post_parent) {
      $children = wp_list_pages("title_li=&child_of=".$post->post_parent."&echo=0");
      $titlenamer = get_the_title($post->post_parent);
      $parentlink = get_permalink($post->post_parent);
      }
    
      else {
      $children = wp_list_pages("title_li=&child_of=".$post->ID."&echo=0");
      $titlenamer = get_the_title($post->ID);
      $parentlink = get_permalink($post->ID);
      }
      if ($children) { ?>
        <ul>
          <li><a href="<? echo $parentlink; ?>"><? echo $titlenamer; ?></a></li>
          <li><?php echo $children; ?></li>
        </ul>
    
    <?php } ?>

    Here’s what I did.

    if($post->post_parent) {
    $children = wp_list_pages(“title_li=&child_of=”.$post->post_parent.”&echo=0″);
    $titlenamer = get_the_title($post->post_parent);
    $parentlink = get_permalink($post->post_parent);
    }

    else {
    $children = wp_list_pages(“title_li=&child_of=”.$post->ID.”&echo=0″);
    $titlenamer = get_the_title($post->ID);
    $parentlink = get_permalink($post->ID);
    }
    if ($children) { ?>

    <?php } ?>

Viewing 2 replies - 1 through 2 (of 2 total)