get_next_post_link( string $format = '%link »', string $link = '%title', bool $in_same_term = false, array|string $excluded_terms = '', string $taxonomy = 'category' )
Retrieves the next post link that is adjacent to the current post.
描述
参数
- $format
-
(string)
(Optional)
Link anchor format. Default ‘« %link’.Default value: ‘%link »’
- $link
-
(string)
(Optional)
Link permalink format.Default value: ‘%title’
- $in_same_term
-
(bool)
(Optional)
Whether link should be in a same taxonomy term.Default value: false
- $excluded_terms
-
(array|string)
(Optional)
Array or comma-separated list of excluded term IDs.Default value: ”
- $taxonomy
-
(string)
(Optional)
Taxonomy, if $in_same_term is true.Default value: ‘category’
返回值
(string) The link URL of the next post in relation to the current post.
源代码
File: 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 );
}
更新日志
Version | 描述 |
---|---|
3.7.0 | Introduced. |
相关函数
Uses
-
wp-includes/link-template.php:
get_adjacent_post_link()
Used By
-
wp-includes/link-template.php:
get_the_post_navigation() -
wp-includes/link-template.php:
next_post_link()
你可能对这些文章感兴趣:
- wordpress函数get_the_posts_navigation()用法示例
- wordpress函数get_the_title()用法示例
- wordpress函数get_the_terms()用法示例
- wordpress函数get_the_tags()用法示例
- wordpress函数get_the_taxonomies()用法示例
- wordpress函数get_the_permalink()用法示例
- wordpress函数get_the_password_form()用法示例
- wordpress函数get_the_posts_pagination()用法示例
- wordpress函数get_the_modified_date()用法示例
- wordpress函数get_the_modified_time()用法示例
- wordpress函数get_the_modified_author()用法示例
- wordpress函数get_the_guid()用法示例
- wordpress函数get_the_ID()用法示例
- wordpress函数get_the_excerpt()用法示例
如有疑问,请前往问答中心反馈!
反馈