next_post_link()
函数是常用的wordpress函数之一,用于显示当前文章相邻的下一篇文章链接,上一篇、下一篇文章几乎是当下网站都会添加的文章页面元素,据说是有利于SEO优化。本篇内容博客吧分享获取下一篇文章函数next_post_link()
使用教程和方法。
函数结构
1 2 3 | <?php next_post_link( string $format = '%link »', string $link = '%title', bool $in_same_term = false, int[]|string $excluded_terms = '', string $taxonomy = 'category' ) ?> |
参数说明
- $format – (字符串)(可选)链接锚的格式。默认 ‘« %link’。默认值:’%link »’
- $link – (字符串)(可选)链接的文本。默认“%title”。默认值:’%title’
- $in_same_term – (布尔值)(可选)是否调用相同分类的链接。默认值:false
- $excluded_terms – (数组或字符串)(可选)要排除的分类ID,多个ID用数组或者英文逗号的形式隔开。默认值: ”
- $taxonomy – (字符串)(可选)分类法,如果 $in_same_term 的值为 true 时有效。默认值:“category”
使用示例
示例一
如果存在下一篇文章,则带箭头的标题超链接的形式显示下一篇文章,如果没有下一篇文章,则不显示任何内容。
1 | <?php next_post_link();?> |
示例二
去掉默认的箭头
1 | <?php next_post_link('%link','%title');?> |
示例三
去掉默认的箭头,不使用标题文字,加粗
1 | <?php next_post_link('<strong>%link</strong>','下一篇');?> |
示例四
只显示相同分类的下一篇文章
1 | <?php next_post_link('%link','%title',true,'','category');?> |
示例五
排除分类ID为5的文章
1 | <?php next_post_link('%link','%title','','5');?> |
示例六
排除分类ID为5,6,7的文章
1 | <?php next_post_link('%link','%title','',array(5,6,7));?> |
函数位置:wp-includes/link-template.php
官方文档:https://developer.wordpress.org/reference/functions/next_post_link/