在Wordpress中显示顶层和子页
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了在Wordpress中显示顶层和子页相关的知识,希望对你有一定的参考价值。
use this in the sidebar to show a top level page with child pages persistently
<li><a href="<?php echo get_permalink($post->post_parent) ?>"><?php echo $parent_title;?></a></li></ul> <?php if ($post->post_parent) { $ancestors=get_post_ancestors($post->ID); $parent = $ancestors[$root]; } else { $parent = $post->ID; } $children = wp_list_pages("title_li=&child_of=". $parent ."&echo=0"); if ($children) { ?> <ul id="subnav"> <?php echo $children; ?> </ul> <?php } ?>
以上是关于在Wordpress中显示顶层和子页的主要内容,如果未能解决你的问题,请参考以下文章