On this page
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
$wherestring-
The
WHEREclause in the SQL. $in_same_termbool-
Whether post should be in a same taxonomy term.
$excluded_termsint[]|string-
Array of excluded term IDs. Empty string if none were provided.
$taxonomystring-
Taxonomy. Used to identify the term used when
$in_same_termis true. $postWP_Post-
WP_Post object.
Source
File: wp-includes/link-template.php. View all references
$where = apply_filters( "get_{$adjacent}_post_where", $wpdb->prepare( "WHERE p.post_date $op %s AND p.post_type = %s $where", $current_post_date, $post->post_type ), $in_same_term, $excluded_terms, $taxonomy, $post );
Related
Used By
| Used By | Description |
|---|---|
| get_adjacent_post() wp-includes/link-template.php | Retrieves the adjacent post. |
Changelog
© 2003–2022 WordPress Foundation
Licensed under the GNU GPLv2+ License.
https://developer.wordpress.org/reference/hooks/get_adjacent_post_where