禁用第一篇文章中的“上一链接”和最后一篇文章中的“下一链接”

时间:2011-07-02 作者:Dee

如何在第一篇文章中禁用“上一个链接”,在最后一篇文章中禁用“下一个链接”?非常感谢。

2 个回复
SO网友:Ramkumar M
<?php next_post_link(\'format\', \'link\', \'in_same_cat\', \'excluded_categories\'); ?> 

<?php previous_post_link($format, $link, $in_same_cat = false, $excluded_categories = \'\'); ?>
SO网友:Jeremy Jared

只需使用此功能,无需额外功能:

<div class="previous-post"> <?php previous_post_link(\' &laquo;%link \') ?> </div>
<div class="next-post"> <?php next_post_link(\' %link &raquo; \') ?> </div>
只需将此添加到单曲。php,而不是索引。php。这是一种只在单个帖子中显示的简单方法(这不会在最后一篇帖子上显示上一篇帖子链接,在第一篇帖子上不会有下一篇帖子)。

结束

相关推荐