ClassicPress logo
Skip to content
Filter by type:

Browse:

  • Home
  • Functions
  • map_meta_cap
  • auth_{$object_type}_meta_{$meta_key}

apply_filters( "auth_{$object_type}_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 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

Whether the user can add the object meta. Default false.

$meta_key

The meta key.

$object_id

Object ID.

$user_id

User ID.

$cap

Capability name.

$caps

Array of the user's capabilities.


Source

File: wp-includes/capabilities.php

View on GitHub


Related

Used By

Used By
Used By Description
wp-includes/capabilities.php: map_meta_cap()

Maps a capability to the primitive capabilities required of the given user to satisfy the capability being checked.


Changelog

Changelog
Version Description
4.6.0
3.3.0 Introduced. As auth_post_meta_{$meta_key}.
ClassicPress Documentation • Made with ClassicPress
Privacy Policy