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 |
---|---|
557 | $posts_in_ex_cats_sql = " AND tt.term_id NOT IN (" . implode($excluded_categories, ',') . ')'; |
558 | } |
559 | } |
560 | } |
561 |
|
562 | $adjacent = $previous ? 'previous' : 'next'; |
563 | $op = $previous ? '<' : '>'; |
564 | $order = $previous ? 'DESC' : 'ASC'; |
565 |
|
566 | $join = apply_filters( "get_{$adjacent}_post_join", $join, $in_same_cat, $excluded_categories ); |
567 | $where = apply_filters( "get_{$adjacent}_post_where", $wpdb->prepare("WHERE p.post_date $op %s AND p.post_type = 'post' AND p.post_status = 'publish' $posts_in_ex_cats_sql", $current_post_date), $in_same_cat, $excluded_categories ); |
568 | $sort = apply_filters( "get_{$adjacent}_post_sort", "ORDER BY p.post_date $order LIMIT 1" ); |
569 |
|
570 | return $wpdb->get_row("SELECT p.* FROM $wpdb->posts AS p $join $where $sort"); |
571 | } |
572 |
|
573 | function previous_post_link($format='« %link', $link='%title', $in_same_cat = false, $excluded_categories = '') { |
574 | adjacent_post_link($format, $link, $in_same_cat, $excluded_categories, true); |
575 | } |