在父页中列出WordPress子页

Posted

tags:

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

  1. <?php if ( is_page() ) {
  2. if($post->post_parent)
  3. $children = wp_list_pages('sort_column=menu_order&title_li=&child_of='.$post->post_parent.'&echo=0');
  4. else
  5. $children = wp_list_pages('sort_column=menu_order&title_li=&child_of='.$post->ID.'&echo=0');
  6. if ($children) {
  7. ?>
  8. <div class="sidebar">
  9. <h2>Sub-pages of Current Page</h2>
  10. <ul>
  11. <?php echo $children; ?>
  12. </ul>
  13. </div>
  14. <?php
  15. } // End If Post
  16. } // End if is page
  17. ?>

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

在Wordpress中打开父页/子页时显示子页

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

WordPress子页和父页菜单

WordPress父页和子页摘录

asp 网页 iframe 子页如何向父页回传参数

jQuery操作iframe子页中元素代码实例