apply_filters( "get_{$adjacent}_post_where", string $where , bool $in_same_term , int[]|string $excluded_terms , string $taxonomy , WP_Post $post )
Filters the WHERE clause in the SQL for an adjacent post query.
Description
The dynamic portion of the hook name, $adjacent, refers to the type of adjacency, ‘next’ or ‘previous’.
Possible hook names include:
get_next_post_whereget_previous_post_where
Parameters
- $where
-
The
WHEREclause in the SQL. - $in_same_term
-
Whether post should be in the same taxonomy term.
- $excluded_terms
-
Array of excluded term IDs. Empty string if none were provided.
- $taxonomy
-
Taxonomy. Used to identify the term used when
$in_same_termis true. - $post
-
WP_Post object.
Source
Changelog
| Version | Description |
|---|---|
| 4.4.0 | Added the $taxonomy and $post parameters. |
| 2.5.0 | Introduced. |