WP hooks navigation: Home/browse • Actions index • Filters index
To save our bandwidth, we show only a snippet of code around each occurence of the hook. View complete file in SVN (without highlighting).
The best way to understand what a hook does is to look at where it occurs in the source code.
do_action( "hook_name" )apply_filters( "hook_name", "what_to_filter" ).Remember, this hook may occur in more than one file. Moreover, the hook's context may change from version to version.
| Line | Code |
|---|---|
| 1846 | * |
| 1847 | * @since 2.5.0 |
| 1848 | * @since 4.4.0 Added the `$post` parameter. |
| 1849 | * @since 4.9.0 Added the `$order` parameter. |
| 1850 | * |
| 1851 | * @param string $order_by The `ORDER BY` clause in the SQL. |
| 1852 | * @param WP_Post $post WP_Post object. |
| 1853 | * @param string $order Sort order. 'DESC' for previous post, 'ASC' for next. |
| 1854 | */ |
| 1855 | $sort = apply_filters( "get_{$adjacent}_post_sort", "ORDER BY p.post_date $order LIMIT 1", $post, $order ); |
| 1856 | |
| 1857 | $query = "SELECT p.ID FROM $wpdb->posts AS p $join $where $sort"; |
| 1858 | $query_key = 'adjacent_post_' . md5( $query ); |
| 1859 | $result = wp_cache_get( $query_key, 'counts' ); |
| 1860 | if ( false !== $result ) { |
| 1861 | if ( $result ) { |
| 1862 | $result = get_post( $result ); |
| 1863 | } |
| 1864 | return $result; |