显示相邻的帖子链接。
原型
adjacent_post_link( string $format, string $link, bool $in_same_term = false, array|string $excluded_terms = '', bool $previous = true, string $taxonomy = 'category' )
描述
可以是下一个帖子链接或之前的链接。
参数
$format
(string)
(Required)
链接锚格式。
$link
(string)
(Required)
链接永久链接格式。
$in_same_term
(bool)
(Optional)
链接是否应该在同一分类术语中。
$excluded_terms
(array|string)
(Optional)
数组或逗号分隔的排除类别ID列表。
$previous
(bool)
(Optional)
是否显示上一篇或下一篇文章的链接。
$taxonomy
(string)
(Optional)
分类法,如果$ in_same_term为真。
源文件
路径:wp-includes/link-template.php
<?php
...
function adjacent_post_link( $format, $link, $in_same_term = false, $excluded_terms = '', $previous = true, $taxonomy = 'category' ) {
echo get_adjacent_post_link( $format, $link, $in_same_term, $excluded_terms, $previous, $taxonomy );
}
...
?>
其他
英文文档:https://developer.wordpress.org/reference/functions/adjacent_post_link/