Filters whether the user is allowed to add post meta to a post of a given type.
Description
Use the auth_$object_type_$sub_type_meta_$meta_key filter to modify capabilities for specific object types/subtypes. Return true to have the mapped meta caps from edit_{$object_type} apply.
The dynamic portion of the hook name, $object_type refers to the object type being filtered. The dynamic portion of the hook name, $sub_type refers to the object subtype being filtered. The dynamic portion of the hook name, $meta_key, refers to the meta key passed to map_meta_cap() .
Parameters
$allowedbool- Whether the user can add the post meta. Default false.
$meta_keystring- The meta key.
$post_idint- Post ID.
$user_idint- User ID.
$capstring- Capability name.
$capsarray- User capabilities.
Source
$message = __( 'The post status %1$s is not registered, so it may not be reliable to check the capability %2$s against a post with that status.' );
User Contributed Notes
You must log in before being able to contribute a note or feedback.