get_{$adjacent}_post_where

Advertisement

Summery Summery

Filters the WHERE clause in the SQL for an adjacent post query.

Syntax Syntax

apply_filters( "get_{$adjacent}_post_where", string $where, bool $in_same_term, array $excluded_terms, string $taxonomy, WP_Post $post )

Description Description

The dynamic portion of the hook name, $adjacent, refers to the type of adjacency, ‘next’ or ‘previous’.

Parameters Parameters

$where

The WHERE clause in the SQL.

$in_same_term

Whether post should be in a same taxonomy term.

$excluded_terms

Array of excluded term IDs.

$taxonomy

Taxonomy. Used to identify the term used when $in_same_term is true.

$post

WP_Post object.

Source Source

File: wp-includes/link-template.php

Advertisement

Changelog Changelog

Changelog
Version Description
4.4.0 Added the $taxonomy and $post parameters.
2.5.0 Introduced.

Advertisement

Leave a Reply