auth_{$object_type}_meta_{$meta_key}_for_{$object_subtype} WordPress Filter Hook

This hook is called when the auth_{$object_type}_meta_{$meta_key}_for_{$object_subtype} is being fetched. The $object_type variable is the type of object being fetched (e.g. post, user, etc.), the $meta_key variable is the meta key being fetched, and the $object_subtype is the subtype of the object being fetched (e.g. post type, user role, etc.).

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 ) #

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.


Top ↑

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.


Top ↑

Source

File: wp-includes/capabilities.php

View on Trac



Top ↑

Changelog

Changelog
VersionDescription
4.9.8Introduced.

The content displayed on this page has been created in part by processing WordPress source code files which are made available under the GPLv2 (or a later version) license by theĀ Free Software Foundation. In addition to this, the content includes user-written examples and information. All material is subject to review and curation by the WPPaste.com community.