get_{$adjacent}_post_sort WordPress Filter Hook

The get_{$adjacent}_post_sort Wordpress hook allows you to change the order in which adjacent posts are retrieved. This can be useful if you want to display posts in a different order than they were originally published.

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

Filters the ORDER BY 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_sort
  • get_previous_post_sort

Top ↑

Parameters

$order_by

(string)The ORDER BY clause in the SQL.

$post

(WP_Post)WP_Post object.

$order

(string)Sort order. 'DESC' for previous post, 'ASC' for next.


Top ↑

Source

File: wp-includes/link-template.php

View on Trac



Top ↑

Changelog

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

The content displayed on this page has been created in part by processing WordPress source code files which are made available under the GPLv2 (or a later version) license by theĀ Free Software Foundation. In addition to this, the content includes user-written examples and information. All material is subject to review and curation by the WPPaste.com community.

Show More
Show More