wpseek.com
A WordPress-centric search engine for devs and theme authors



get_{$adjacent}_post_sort › WordPress Filter Hooks

Since4.9.0
Deprecatedn/a
apply_filters( "get_{$adjacent}_post_sort", "ORDER BY p.post_date $order LIMIT 1", $post, $order )
Parameters: (3)
  • (string) $order_by The `ORDER BY` clause in the SQL.
    Required: Yes
  • (WP_Post) $post WP_Post object.
    Required: Yes
  • (string) $order Sort order. 'DESC' for previous post, 'ASC' for next.
    Required: Yes
Defined at:
Codex:

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

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




Source

$sort = apply_filters( "get_{$adjacent}_post_sort", "ORDER BY p.post_date $order LIMIT 1", $post, $order );