get_{$adjacent}_post_join WordPress Filter Hook
The get_{$adjacent}_post_join hook is called during SQL query for the next/previous post. This hook is giving developers the chance to alter the SQL JOIN clause used in the query, which can be useful for optimizing performance.
apply_filters( "get_{$adjacent}_post_join", string $join , bool $in_same_term , array $excluded_terms , string $taxonomy , WP_Post $post ) #
Filters the JOIN 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_join
get_previous_post_join
Parameters
Source
Changelog
Version | Description |
---|---|
4.4.0 | Added the $taxonomy and $post parameters. |
2.5.0 | Introduced. |