显示链接到当前页面的下一个和上一个兄弟,和一个链接到pa页面
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了显示链接到当前页面的下一个和上一个兄弟,和一个链接到pa页面相关的知识,希望对你有一定的参考价值。
Must be placed after the_post()
<? $pagelist = get_pages("child_of=".$post->post_parent."&parent=".$post->post_parent."&sort_column=menu_order&sort_order=asc"); foreach ($pagelist as $pagina) { $pagini[] += $pagina->ID; } } $prevID = $pagini[$current-1]; $nextID = $pagini[$current+1]; ?> <div class="navigation"> <div style="clear:both;"><a href="<?php echo get_permalink($post->post_parent); ?>" title="<?php echo get_the_title($post->post_parent); ?>"> <?php echo get_the_title($post->post_parent); ?></a></div> <div class="alignleft"> <a href="<?php echo get_permalink($prevID); ?>" title="<?php echo get_the_title($prevID); ?>">« <?php echo get_the_title($prevID); ?></a> </div> <?php } <div class="alignright"> <a href="<?php echo get_permalink($nextID); ?>" title="<?php echo get_the_title($nextID); ?>"><?php echo get_the_title($nextID); ?> »</a> </div> <?php } ?> </div>
以上是关于显示链接到当前页面的下一个和上一个兄弟,和一个链接到pa页面的主要内容,如果未能解决你的问题,请参考以下文章