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 |
---|---|
1963 | * |
1964 | * @param mixed $value Value of the prefixed post field. |
1965 | * @param int $post_id Post ID. |
1966 | * @param string $context Context for how to sanitize the field. Possible |
1967 | * values include 'raw', 'edit', 'db', 'display', |
1968 | * 'attribute' and 'js'. |
1969 | */ |
1970 | $value = apply_filters( $field, $value, $post_id, $context ); |
1971 | } else { |
1972 | $value = apply_filters( "post_{$field}", $value, $post_id, $context ); |
1973 | } |
1974 |
|
1975 | if ( 'attribute' == $context ) { |
1976 | $value = esc_attr( $value ); |
1977 | } elseif ( 'js' == $context ) { |
1978 | $value = esc_js( $value ); |
1979 | } |
1980 | } |
1981 |
|