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: <ul> <li>added_blog_meta</li> <li>added_post_meta</li> <li>added_comment_meta</li> <li>added_term_meta</li> <li>added_user_meta</li> </ul>
162*163* @param int$mid The meta ID after successful update.164* @param int$object_idID of the object metadata is for.165* @param string$meta_key Metadata key.166* @param mixed$_meta_value Metadata value.167*/168do_action("added_{$meta_type}_meta",$mid,$object_id,$meta_key,$_meta_value);169170return$mid;171}172173/**174* 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.