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 )

In this article

This hook has been deprecated. Use {@see ‘auth_{$object_type}meta{$meta_key}for{$object_subtype}’} instead.

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() .

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_deprecated(
	"auth_{$object_type}_{$object_subtype}_meta_{$meta_key}",
	array( $allowed, $meta_key, $object_id, $user_id, $cap, $caps ),
	'4.9.8',
	"auth_{$object_type}_meta_{$meta_key}_for_{$object_subtype}"
);

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.

User Contributed Notes

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