首页 WordPress函数大全 get_adjacent_post()

get_adjacent_post()

2020-05-01 / 3499阅 / 悠然

如何你看完本文还不知道如何使用该函数,可以联系我定制视频教程,50元/个函数,学不会全额退款

get_adjacent_post( bool $in_same_term = false, array|string $excluded_terms = '', bool $previous = true, string $taxonomy = 'category' )

Retrieves the adjacent post.

描述

Can either be next or previous post.

参数

$in_same_term

(bool)
(Optional)
Whether post 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: ''

$previous

(bool)
(Optional)
Whether to retrieve previous post. Default true

Default value: true

$taxonomy

(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.

大家谈论
    我的见解