列出当前页的子页

Posted

tags:

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

  1. function list_sub_pages () {
  2. global $wp_query;
  3. if( empty($wp_query->post->post_parent) ) {
  4. $parent = $wp_query->post->ID;
  5. echo "<h3>".get_the_title($parent)."</h3>";
  6. } else {
  7. $parent = $wp_query->post->post_parent;
  8. echo "<h3><a href='".get_permalink($parent)."'>".get_the_title($parent)."</a></h3>";
  9. }
  10. echo '<ul>';
  11. wp_list_pages("title_li=&child_of=$parent" );
  12. echo '</ul>';
  13. }

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

文字出版社函数.php-仅显示当前页&ŧ039;的子页和当前页同级,隐藏si

母版页的铵钮事件去获取子页的内容

激活当前视图菜单高亮呈现 V2.0

PHP Wordpress:列出当前类别的子类别

检查当前页是否有子页

text 在无序列表中列出当前页面的子页面。