Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: get_term

To save our bandwidth, we show only a snippet of code around each occurence of the hook. View complete file in SVN (without highlighting).

Understanding Source Code

The best way to understand what a hook does is to look at where it occurs in the source code.

Remember, this hook may occur in more than one file. Moreover, the hook's context may change from version to version.

Source View

Line Code
308           $_term = $term;
309      } else {
310           $term = (int) $term;
311           if ( ! $_term = wp_cache_get($term, $taxonomy) ) {
312                $_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 = %s LIMIT 1", $taxonomy, $term) );
313                wp_cache_add($term, $_term, $taxonomy);
314           }
315      }
316
317      $_term = apply_filters('get_term', $_term, $taxonomy);
318      $_term = apply_filters("get_$taxonomy", $_term, $taxonomy);
319      $_term = sanitize_term($_term, $taxonomy, $filter);
320
321      if ( $output == OBJECT ) {
322           return $_term;
323      } elseif ( $output == ARRAY_A ) {
324           return get_object_vars($_term);
325      } elseif ( $output == ARRAY_N ) {
326           return array_values(get_object_vars($_term));