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 |
|---|---|
| 1353 | * key value, respectively. |
| 1354 | * |
| 1355 | * @since 3.3.0 |
| 1356 | * |
| 1357 | * @param mixed $meta_value Metadata value to sanitize. |
| 1358 | * @param string $meta_key Metadata key. |
| 1359 | * @param string $object_type Type of object metadata is for. Accepts 'post', 'comment', 'term', 'user', |
| 1360 | * or any other object type with an associated meta table. |
| 1361 | */ |
| 1362 | return apply_filters( "sanitize_{$object_type}_meta_{$meta_key}", $meta_value, $meta_key, $object_type ); |
| 1363 | } |
| 1364 | |
| 1365 | /** |
| 1366 | * Registers a meta key. |
| 1367 | * |
| 1368 | * It is recommended to register meta keys for a specific combination of object type and object subtype. If passing |
| 1369 | * an object subtype is omitted, the meta key will be registered for the entire object type, however it can be partly |
| 1370 | * overridden in case a more specific meta key of the same name exists for the same object type and a subtype. |
| 1371 | * |