Warning: This hook has been deprecated. Use ‘auth_{$object_typemeta{$meta_key}for{$object_subtype}’} instead.

auth_{$object_type}_{$object_subtype}_meta_{$meta_key} WordPress Hook

The auth_{$object_type}_{$object_subtype}_meta_{$meta_key} hook allows you to filter the value of a specific meta key for a specific object type and subtype. This hook is useful for ensuring that the data stored in a meta key is valid before it is saved to the database.

apply_filters_deprecated( "auth_{$object_type}_{$object_subtype}_meta_{$meta_key}", bool $allowed, string $meta_key, int $object_id, int $user_id, string $cap, string[] $caps ) #

Filters whether the user is allowed to edit meta for specific object types/subtypes.


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, $object_subtype 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().


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.8Use 'auth_{$object_type*meta*{$meta_key}*for*{$object_subtype}'} instead.
4.7.0Renamed from auth_post_{$post_type}_meta_{$meta_key} to auth_{$object_type}_{$object_subtype}_meta_{$meta_key}.
4.6.0Introduced.

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.