wordpress文章页下一篇文章标题和链接获取方法,跟上一篇中讲到的get_previous_post()对应的,下一篇函数:get_next_post()
语法结构:
get_next_post( boolean $in_same_term = false, string $excluded_terms = '', string $taxonomy = 'category' )
$in_same_term 布尔值,默认值:false,是否只返回相同分类下的文章
$excluded_terms 字符串值,默认为空,需要排除的分类ID,用半角逗号分隔多个ID
$taxonomy 字符串值,默认值:category,自定义分类法的名称
实例:
<?php $next_post = get_next_post(); if (!empty( $next_post )): ?> <a href="<?php echo get_permalink( $next_post->ID ); ?>"><?php echo $next_post->post_title; ?></a> <?php endif; ?>
如果需要限制只调用跟本文一样的分类文章的话:
$next_post = get_next_post(true);
把上面的代码中第一句改成上面的代码。
很简单第一个参数设置成true即可。