你在找get_adjacent_post 作用这是一个内置的wordpress函数,您可以使用它从当前帖子中获取上一篇或下一篇帖子。
To get the next post:
$next_post = get_adjacent_post( false, \'\', false, \'\' );
To get the previous post:
$prev_post = get_adjacent_post( false, \'\', true, \'\' );
您还可以指定帖子是否应位于相同的分类术语中,并将分类设置为true。
get_adjacent_post( bool $in_same_term = false, array|string $excluded_terms = \'\', bool $previous = true, string $taxonomy =
“类别”)
参数
$in_same_term (bool)(可选)post是否应位于同一分类术语中。
默认值:false
$excluded_terms
(array | string)(可选)排除的术语ID的数组或逗号分隔列表。
默认值:“”
$previous
(bool)(可选)是否检索以前的帖子。默认为true
默认值:true
$taxonomy
(字符串)(可选)分类法,如果$in\\u same\\u term为true。
默认值:“类别”