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 |
---|---|
1174 | } |
1175 | } |
1176 | } |
1177 |
|
1178 | $adjacent = $previous ? 'previous' : 'next'; |
1179 | $op = $previous ? '<' : '>'; |
1180 | $order = $previous ? 'DESC' : 'ASC'; |
1181 |
|
1182 | $join = apply_filters( "get_{$adjacent}_post_join", $join, $in_same_term, $excluded_terms ); |
1183 | $where = apply_filters( "get_{$adjacent}_post_where", $wpdb->prepare( "WHERE p.post_date $op %s AND p.post_type = %s AND p.post_status = 'publish' $posts_in_ex_terms_sql", $current_post_date, $post->post_type), $in_same_term, $excluded_terms ); |
1184 | $sort = apply_filters( "get_{$adjacent}_post_sort", "ORDER BY p.post_date $order LIMIT 1" ); |
1185 |
|
1186 | $query = "SELECT p.ID FROM $wpdb->posts AS p $join $where $sort"; |
1187 | $query_key = 'adjacent_post_' . md5( $query ); |
1188 | $result = wp_cache_get( $query_key, 'counts' ); |
1189 | if ( false !== $result ) { |
1190 | if ( $result ) |
1191 | $result = get_post( $result ); |
1192 | return $result; |