PHP 列出父页面中的WordPress子页面

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了PHP 列出父页面中的WordPress子页面相关的知识,希望对你有一定的参考价值。

<?php if ( is_page() ) {
      if($post->post_parent)
      $children = wp_list_pages('sort_column=menu_order&title_li=&child_of='.$post->post_parent.'&echo=0');
else
      $children = wp_list_pages('sort_column=menu_order&title_li=&child_of='.$post->ID.'&echo=0');
      if ($children) {
   ?>
      <div class="sidebar">
<h2>Sub-pages of Current Page</h2>
<ul>
        <?php echo $children; ?>
        </ul>
      </div>
   <?php
} // End If Post
       } // End if is page
   ?>

以上是关于PHP 列出父页面中的WordPress子页面的主要内容,如果未能解决你的问题,请参考以下文章

PHP Wordpress:仅列出特定父页面的子页面

PHP 列出WordPress子页面,即使在子页面上也是如此

PHP WordPress子页面和父页面菜单

PHP 带有子页面摘录的WordPress父页面

PHP Wordpress - 检查子页面是否属于父页面

PHP Wordpress - 在列表中列出子页面,但没有指向当前页面的链接