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; ?>
发表评论