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 |
---|---|
1217 | * key value, respectively. |
1218 | * |
1219 | * @since 3.3.0 |
1220 | * |
1221 | * @param mixed $meta_value Metadata value to sanitize. |
1222 | * @param string $meta_key Metadata key. |
1223 | * @param string $object_type Type of object metadata is for. Accepts 'post', 'comment', 'term', 'user', |
1224 | * or any other object type with an associated meta table. |
1225 | */ |
1226 | return apply_filters( "sanitize_{$object_type}_meta_{$meta_key}", $meta_value, $meta_key, $object_type ); |
1227 | } |
1228 |
|
1229 | /** |
1230 | * Registers a meta key. |
1231 | * |
1232 | * It is recommended to register meta keys for a specific combination of object type and object subtype. If passing |
1233 | * an object subtype is omitted, the meta key will be registered for the entire object type, however it can be partly |
1234 | * overridden in case a more specific meta key of the same name exists for the same object type and a subtype. |
1235 | * |