get_{$adjacent}_post_sort

Advertisement

Summery Summery

Filters the ORDER BY clause in the SQL for an adjacent post query.

Syntax Syntax

apply_filters( "get_{$adjacent}_post_sort", string $order_by, WP_Post $post, string $order )

Description Description

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

Parameters Parameters

$order_by

The ORDER BY clause in the SQL.

$post

WP_Post object.

$order

Sort order. 'DESC' for previous post, 'ASC' for next.

Source Source

File: wp-includes/link-template.php

Advertisement

Changelog Changelog

Changelog
Version Description
4.9.0 Added the $order parameter.
4.4.0 Added the $post parameter.
2.5.0 Introduced.

Advertisement

Leave a Reply