Filters whether the user is allowed to edit a specific meta key of a specific object type.
Description
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, $meta_key
, refers to the meta key passed to map_meta_cap() .
Parameters
$allowed
bool- Whether the user can add the object meta. Default false.
$meta_key
string- The meta key.
$object_id
int- Object ID.
$user_id
int- User ID.
$cap
string- Capability name.
$caps
string[]- Array of the user’s capabilities.
Source
$allowed = apply_filters( "auth_{$object_type}_meta_{$meta_key}", $allowed, $meta_key, $object_id, $user_id, $cap, $caps );
User Contributed Notes
You must log in before being able to contribute a note or feedback.