wordpress按分类获取文章上下页

Posted kinblog

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了wordpress按分类获取文章上下页相关的知识,希望对你有一定的参考价值。

上一页

<?php $prev_post = get_previous_post(true); if (!empty( $prev_post )): ?>
<a href="<?php echo get_permalink( $prev_post->ID ); ?>"></a>
<?php endif; ?>

下一页

<?php $next_post = get_next_post(true); if (!empty( $next_post )): ?>
<a href="<?php echo get_permalink( $next_post->ID ); ?>"></a>
<?php endif; ?>

参数作用

get_previous_post( boolean $in_same_cat, string $excluded_categories )
//$in_same_cat

//布尔值,默认值:false

//如果为true,则输出与当前文章相同分类下的上一篇文章。

//$excluded_categories

//字符串值,默认为空

//要排除的分类ID

以上是关于wordpress按分类获取文章上下页的主要内容,如果未能解决你的问题,请参考以下文章

wordpress 当前栏目名,当前栏目的分类名

wordpress通过$wpdb获取一个分类下所有的文章

怎么去掉wordpress分类和标签前缀

如何获取在 Wordpress 中按类别过滤的自定义帖子类型的永久链接?

Wordpress 按税收条款获取帖子-税收条款是页面蛞蝓

WordPress主题开发:按分类调用文章