Wordpress-列出列表中的子页,但不包含指向当前页的链接
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Wordpress-列出列表中的子页,但不包含指向当前页的链接相关的知识,希望对你有一定的参考价值。
Must be placed after the_post() so make sure you verify that if you place it in the sidebar.
<?php $pagelist = get_pages("child_of=".$post->post_parent."&parent=".$post->post_parent."&sort_column=menu_order&sort_order=asc"); <h2>Subpages</h2> <ul> <?php foreach ($pagelist as $page) { else $titlu=get_the_title($page->ID); if ($page->ID != $post->ID) echo '<li><a href="'.get_permalink($page->ID).'" title="'.get_the_title($page->ID).'">'.$titlu.'</a></li>'; else echo '<li>'.get_the_title($page->ID).'</li>'; print " "; } ?> </ul> <?php } ?>
以上是关于Wordpress-列出列表中的子页,但不包含指向当前页的链接的主要内容,如果未能解决你的问题,请参考以下文章