Uses
Uses | Description |
---|---|
wp-includes/link-template.php: get_adjacent_post() | Retrieves the adjacent post. |
Retrieves the next post that is adjacent to the current post.
(bool) (Optional) Whether post should be in a same taxonomy term.
Default value: false
(array|string) (Optional) Array or comma-separated list of excluded term IDs.
Default value: ''
(string) (Optional) Taxonomy, if $in_same_term is true.
Default value: 'category'
(null|string|WP_Post) Post object if successful. Null if global $post is not set. Empty string if no corresponding post exists.
File: wp-includes/link-template.php
function get_next_post( $in_same_term = false, $excluded_terms = '', $taxonomy = 'category' ) { return get_adjacent_post( $in_same_term, $excluded_terms, false, $taxonomy ); }
Version | Description |
---|---|
1.5.0 | Introduced. |
© 2003–2019 WordPress Foundation
Licensed under the GNU GPLv2+ License.
https://developer.wordpress.org/reference/functions/get_next_post