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 |
|---|---|
| 322 | * @since 4.6.0 |
| 323 | * |
| 324 | * @param bool $allowed Whether the user can add the post meta. Default false. |
| 325 | * @param string $meta_key The meta key. |
| 326 | * @param int $post_id Post ID. |
| 327 | * @param int $user_id User ID. |
| 328 | * @param string $cap Capability name. |
| 329 | * @param array $caps User capabilities. |
| 330 | */ |
| 331 | $allowed = apply_filters( "auth_{$object_type}_meta_{$meta_key}", false, $meta_key, $object_id, $user_id, $cap, $caps ); |
| 332 | |
| 333 | /** |
| 334 | * Filters whether the user is allowed to add post meta to a post of a given type. |
| 335 | * |
| 336 | * Use the {@see auth_$object_type_$sub_type_meta_$meta_key} filter to modify capabilities for |
| 337 | * specific object types/subtypes. Return true to have the mapped meta caps from edit_{$object_type} apply. |
| 338 | * |
| 339 | * The dynamic portion of the hook name, `$object_type` refers to the object type being filtered. |
| 340 | * The dynamic portion of the hook name, `$sub_type` refers to the object subtype being filtered. |