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 (post, comment, term, user, or any other type with an associated meta table). Possible hook names include: <ul> <li>added_post_meta</li> <li>added_comment_meta</li> <li>added_term_meta</li> <li>added_user_meta</li> </ul>
156*157* @param int$mid The meta ID after successful update.158* @param int$object_idID of the object metadata is for.159* @param string$meta_key Metadata key.160* @param mixed$_meta_value Metadata value.161*/162do_action("added_{$meta_type}_meta",$mid,$object_id,$meta_key,$_meta_value);163164return$mid;165}166167/**168* Updates metadata for the specified object.If no value already exists for the specified object
History
Introduced in 2.9.0. Unchanged from 6.7.7 through 7.1.0.