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.
This hook occurs 2 times in this file.
| Line | Code |
|---|---|
| 897 | return $null; |
| 898 | if ( ! $_term = wp_cache_get($term, $taxonomy) ) { |
| 899 | $_term = $wpdb->get_row( $wpdb->prepare( "SELECT t.*, tt.* FROM $wpdb->terms AS t INNER JOIN $wpdb->term_taxonomy AS tt ON t.term_id = tt.term_id WHERE tt.taxonomy = %s AND t.term_id = %d LIMIT 1", $taxonomy, $term) ); |
| 900 | if ( ! $_term ) |
| 901 | return $null; |
| 902 | wp_cache_add($term, $_term, $taxonomy); |
| 903 | } |
| 904 | } |
| 905 | |
| 906 | $_term = apply_filters('get_term', $_term, $taxonomy); |
| 907 | $_term = apply_filters("get_$taxonomy", $_term, $taxonomy); |
| 908 | $_term = sanitize_term($_term, $taxonomy, $filter); |
| 909 | |
| 910 | if ( $output == OBJECT ) { |
| 911 | return $_term; |
| 912 | } elseif ( $output == ARRAY_A ) { |
| 913 | $__term = get_object_vars($_term); |
| 914 | return $__term; |
| 915 | } elseif ( $output == ARRAY_N ) { |
| Line | Code |
| 969 | return $term; |
| 970 | } |
| 971 | |
| 972 | $term = $wpdb->get_row( $wpdb->prepare( "SELECT t.*, tt.* FROM $wpdb->terms AS t INNER JOIN $wpdb->term_taxonomy AS tt ON t.term_id = tt.term_id WHERE tt.taxonomy = %s AND $field = %s LIMIT 1", $taxonomy, $value) ); |
| 973 | if ( !$term ) |
| 974 | return false; |
| 975 | |
| 976 | wp_cache_add($term->term_id, $term, $taxonomy); |
| 977 | |
| 978 | $term = apply_filters('get_term', $term, $taxonomy); |
| 979 | $term = apply_filters("get_$taxonomy", $term, $taxonomy); |
| 980 | $term = sanitize_term($term, $taxonomy, $filter); |
| 981 | |
| 982 | if ( $output == OBJECT ) { |
| 983 | return $term; |
| 984 | } elseif ( $output == ARRAY_A ) { |
| 985 | return get_object_vars($term); |
| 986 | } elseif ( $output == ARRAY_N ) { |
| 987 | return array_values(get_object_vars($term)); |