在父页中列出WordPress子页
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了在父页中列出WordPress子页相关的知识,希望对你有一定的参考价值。
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 ?>
以上是关于在父页中列出WordPress子页的主要内容,如果未能解决你的问题,请参考以下文章