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

Fires immediately before updating a post’s metadata.


Parameters

$meta_id

ID of metadata entry to update.

$object_id

Post ID.

$meta_key

Metadata key.

$meta_value

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.


Source

File: wp-includes/meta.php

View on GitHub



Changelog

Changelog
Version Description
2.9.0 Introduced.