Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: term_{$field}

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
2150            * The dynamic portion of the filter name, `$field`, refers to the term field name.
2151            *
2152            * @since 2.3.0
2153            *
2154            * @param mixed  $value    Value of the term field.
2155            * @param int    $term_id  Term ID.
2156            * @param string $taxonomy Taxonomy slug.
2157            * @param string $context  Context to retrieve the term field value.
2158            */
2159           $value = apply_filters( "term_{$field}", $value, $term_id, $taxonomy, $context );
2160
2161           /**
2162            * Filter the taxonomy field sanitized for display.
2163            *
2164            * The dynamic portions of the filter name, `$taxonomy`, and `$field`, refer
2165            * to the taxonomy slug and taxonomy field, respectively.
2166            *
2167            * @since 2.3.0
2168            *