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按分类获取文章上下页的主要内容,如果未能解决你的问题,请参考以下文章