updated_postmeta WordPress Action Hook

The updated_postmeta hook is called whenever a post meta field is updated. It allows you to take an action when this happens, such as updating a related piece of data. The hook takes two arguments: the meta_id of the updated postmeta field, and the post_id of the post the field belongs to.

do_action( 'updated_postmeta', int $meta_id, int $object_id, string $meta_key, mixed $meta_value ) #

Fires immediately after updating a post’s metadata.


Parameters

$meta_id

(int)ID of updated metadata entry.

$object_id

(int)Post ID.

$meta_key

(string)Metadata key.

$meta_value

(mixed)Metadata value. This will be a PHP-serialized string representation of the value if the value is an array, an object, or itself a PHP-serialized string.


Top ↑

Source

File: wp-includes/meta.php

View on Trac



Top ↑

Changelog

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