apply_filters( “auth_{$object_type}_meta_{$meta_key}_for_{$object_subtype}”, bool $allowed, string $meta_key, int $object_id, int $user_id, string $cap, string[] $caps )

In this article

Filters whether the user is allowed to edit a specific meta key of a specific object type and subtype.

Description

The dynamic portions of the hook name, $object_type, $meta_key, and $object_subtype, refer to the metadata object type (comment, post, term or user), the meta key value, and the object subtype respectively.

Parameters

$allowedbool
Whether the user can add the object meta. Default false.
$meta_keystring
The meta key.
$object_idint
Object ID.
$user_idint
User ID.
$capstring
Capability name.
$capsstring[]
Array of the user’s capabilities.

Source

$allowed = apply_filters( "auth_{$object_type}_meta_{$meta_key}_for_{$object_subtype}", $allowed, $meta_key, $object_id, $user_id, $cap, $caps );

Changelog

VersionDescription
4.9.8Introduced.

User Contributed Notes

You must log in before being able to contribute a note or feedback.