WordPress函数get_next_post_link()的介绍及如何使用

每天坐在教室里,但眼神总是看着窗外的风景,不知不觉的默默发呆。我一直急速前行,穿梭于人人之间。试图借应接不暇的风景让我褪去对你的思念。

前面 boke112 联盟跟大家介绍了上一篇函数 previous_post_link()和下一篇函数 next_post_link(),这两个函数还分别涉及到get_previous_post_link()函数和 get_next_post_link()函数,今天就重点跟大家介绍一下 get_next_post_link()函数。

get_next_post_link()函数介绍

检索(获取)与当前文章相邻的下一个文章链接。

get_next_post_link( string $format = '%link »', string $link = '%title', bool $in_same_term = false, array|string $excluded_terms = '', string $taxonomy = 'category' )

参数:

  • $format(字符串):(可选)链接锚点格式,默认为“« %link”,默认值:“%link »”。
  • $link(字符串):(可选)链接永久链接格式,默认的“%title”,默认值:“%title”。
  • $in_same_term(布尔型):(可选)链接是否应使用相同的分类术语,默认值:false。
  • $excluded_terms(数组|字符串):(可选)以数组或逗号分隔的排除项 ID 列表,默认值:''。
  • $taxonomy(字符串):(可选)分类法,如果$in_same_term 为 true,默认值:“category”。

函数所在文件:wp-includes/link-template.php

function get_next_post_link( $format = '%link »', $link = '%title', $in_same_term = false, $excluded_terms = '', $taxonomy = 'category' ) {
return get_adjacent_post_link( $format, $link, $in_same_term, $excluded_terms, false, $taxonomy );
}

get_next_post_link()函数使用示例

示例:默认用法

输入与当前文章相邻的下一个文章链接。

<?php echo get_next_post_link(); ?>

或判断是否存在下一个文章链接

<?php if(get_next_post_link()){
next_post_link();
}else{
echo ‘none’;
}; ?>

示例:在同一个文章分类中

输出同一文章分类中的下一个文章链接。

<?php echo get_next_post_link('%link','%title', TRUE,'', 'category'); ?>

示例:在同一个自定义类型文章分类 wenda 中

输出同一自定义类型文章分类 wenda 中的下一个帖子。

<?php echo get_next_post_link('%link','%title', TRUE,'', 'wenda'); ?>

更多介绍请移步:WordPress - get_next_post_link()

以上就是WordPress函数get_next_post_link()的介绍及如何使用。励志是给人快乐,激励是给人痛苦。更多关于WordPress函数get_next_post_link()的介绍及如何使用请关注haodaima.com其它相关文章!

标签: WordPress