WordPress Hooks Explorer

Listing all hooks extracted WordPress Core


Details about updated_usermeta

Back to home

Files

Filename Hook Type Line Number PHP Doc
wp-includes/deprecated.php do_action 2358 /**
* Update metadata of user.
*
* There is no need to serialize values, they will be serialized if it is
* needed. The metadata key can only be a string with underscores. All else will
* be removed.
*
* Will remove the metadata, if the meta value is empty.
*
* @since 2.0.0
* @deprecated 3.0.0 Use update_user_meta()
* @see update_user_meta()
*
* @param int $user_id User ID
* @param string $meta_key Metadata key.
* @param mixed $meta_value Metadata value.
* @return bool True on successful update, false on failure.
*/

Hook Parameters

Parameter Type Name Description