apply_filters( "auth_post_meta_{$meta_key}", bool $allowed, string $meta_key, int $post_id, int $user_id, string $cap, array $caps )

Filters whether the user is allowed to add post meta to a post.


Description

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 post meta. Default false.
$meta_key string
The meta key.
$post_id int
Post ID.
$user_id int
User ID.
$cap string
Capability name.
$caps array
User capabilities.

Top ↑

Source

File: wp-includes/capabilities.php. View all references



Top ↑

Changelog

Changelog
Version Description
3.3.0 Introduced.

Top ↑

User Contributed Notes

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