do_action( "update_{$meta_type}_meta", int $meta_id, int $object_id, string $meta_key, mixed $meta_value )

Fires immediately before updating metadata of a specific type.


Description

The dynamic portion of the hook, $meta_type, refers to the meta object type (comment, post, term, or user).


Parameters

$meta_id

(int) ID of the metadata entry to update.

$object_id

(int) Object ID.

$meta_key

(string) Meta key.

$meta_value

(mixed) Meta value.


Source

File: wp-includes/meta.php

View on GitHub



Changelog

Changelog
Version Description
WP-2.9.0 Introduced.