auth_post_meta_{$meta_key} WordPress Filter Hook

The auth_post_meta_{$meta_key} hook is fired when a user attempts to add a new post meta key with a value. This hook can be used to prevent a user from adding a meta key with an invalid value, or to modify the value before it is saved.

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 on Trac


Top ↑

Changelog

Changelog
VersionDescription
3.3.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.