On this page
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_idint-
ID of updated metadata entry.
$object_idint-
Post ID.
$meta_keystring-
Metadata key.
$meta_valuemixed-
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 all references
do_action( 'updated_postmeta', $meta_id, $object_id, $meta_key, $meta_value );
Related
Used By
| Used By | Description |
|---|---|
| update_metadata_by_mid() wp-includes/meta.php | Updates metadata by meta ID. |
| update_metadata() wp-includes/meta.php | Updates metadata for the specified object. If no value already exists for the specified object ID and metadata key, the metadata will be added. |
Changelog
| Version | Description |
|---|---|
| 2.9.0 | Introduced. |
© 2003–2022 WordPress Foundation
Licensed under the GNU GPLv2+ License.
https://developer.wordpress.org/reference/hooks/updated_postmeta