Reference › Hooks do_action( "updated_{$meta_type}_meta" , int $meta_id , int $object_id , string $meta_key , mixed $_meta_value )
Since 2.9.0 Description Parameters Fired at Source History Fires immediately after updating metadata of a specific type.
Description The dynamic portion of the hook name, $meta_type, refers to the meta object type (blog, post, comment, term, user, or any other type with an associated meta table). Possible hook names include: <ul> <li>updated_blog_meta</li> <li>updated_post_meta</li> <li>updated_comment_meta</li> <li>updated_term_meta</li> <li>updated_user_meta</li> </ul>
Parameters
$meta_idint ID of updated metadata entry.
$object_idint ID of the object metadata is for.
$meta_keystring Metadata key.
$_meta_valuemixed Metadata value. Fired at · 2 wp-includes/meta.php:353update_metadata() wp-includes/meta.php:987update_metadata_by_mid() Source View on Trac ↗ View on GitHub ↗
347 * 348 * @param int $meta_id ID of updated metadata entry. 349 * @param int $object_id ID of the object metadata is for . 350 * @param string $meta_key Metadata key. 351 * @param mixed $_meta_value Metadata value. 352 * / 353 do_action ( "updated_{ $meta_type } _meta" , $meta_id , $object_id , $meta_key , $_meta_value ) ; 354 355 if ( 'post' === $meta_type ) { 356 / ** 357 * Fires immediately after updating a post's metadata. 358 * 359 * @since 2.9 .0 History Introduced in 2.9.0 . Unchanged from 6.7.7 through 7.1.0.
6.7.7 6.8.8 6.9.7 7.0.4 7.1.0 Signature, return type and hooks compared across 5 parsed releases.
About this page Parsed data Generated from the wordpress-develop 7.0.4 tag, and regenerated for each WordPress release so it tracks the code rather than a snapshot of it. Corrections Something wrong on this page? Report it and it gets fixed in the next regeneration.