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 |
---|---|
1330 | * key value, respectively. |
1331 | * |
1332 | * @since 3.3.0 |
1333 | * |
1334 | * @param mixed $meta_value Metadata value to sanitize. |
1335 | * @param string $meta_key Metadata key. |
1336 | * @param string $object_type Type of object metadata is for. Accepts 'post', 'comment', 'term', 'user', |
1337 | * or any other object type with an associated meta table. |
1338 | */ |
1339 | return apply_filters( "sanitize_{$object_type}_meta_{$meta_key}", $meta_value, $meta_key, $object_type ); |
1340 | } |
1341 |
|
1342 | /** |
1343 | * Registers a meta key. |
1344 | * |
1345 | * It is recommended to register meta keys for a specific combination of object type and object subtype. If passing |
1346 | * an object subtype is omitted, the meta key will be registered for the entire object type, however it can be partly |
1347 | * overridden in case a more specific meta key of the same name exists for the same object type and a subtype. |
1348 | * |