列出当前页的子页
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了列出当前页的子页相关的知识,希望对你有一定的参考价值。
function list_sub_pages () { global $wp_query; $parent = $wp_query->post->ID; echo "<h3>".get_the_title($parent)."</h3>"; } else { $parent = $wp_query->post->post_parent; echo "<h3><a href='".get_permalink($parent)."'>".get_the_title($parent)."</a></h3>"; } echo '<ul>'; wp_list_pages("title_li=&child_of=$parent" ); echo '</ul>'; }
以上是关于列出当前页的子页的主要内容,如果未能解决你的问题,请参考以下文章