wppaste
WordPress

do_action( "added_{$meta_type}_meta", int $mid, int $object_id, string $meta_key, mixed $_meta_value )

Since
2.9.0
Fires immediately after meta of a specific type is added.

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:

  • added_blog_meta
  • added_post_meta
  • added_comment_meta
  • added_term_meta
  • added_user_meta

Compatibility

WordPress
since 2.9.0
  • 6.7.7
  • 6.8.8
  • 6.9.7
  • 7.0.4
  • 7.1.0

Present in every tracked release (6.7.7 to 7.1.0).

Parameters

$midint
The meta ID after successful update.
$object_idint
ID of the object metadata is for.
$meta_keystring
Metadata key.
$_meta_valuemixed
Metadata value.

Where this hook fires · 1

  • wp-includes/meta.php:168add_metadata()

Source code

	 *	 * @param int    $mid         The meta ID after successful update.	 * @param int    $object_id   ID of the object metadata is for.	 * @param string $meta_key    Metadata key.	 * @param mixed  $_meta_value Metadata value.	 */	do_action( "added_{$meta_type}_meta", $mid, $object_id, $meta_key, $_meta_value ); 	return $mid;} /** * Updates metadata for the specified object. If no value already exists for the specified object

Changelog

Introduced in 2.9.0. Unchanged from 6.7.7 through 7.1.0.

  1. 6.7.7
  2. 6.8.8
  3. 6.9.7
  4. 7.0.4
  5. 7.1.0

Signature, return type and hooks compared across 5 parsed releases.

About this page

Parsed data
Generated from the wordpress-develop 6.9.7 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.