deleted_usermeta action-hookWP 3.4.0

Fires immediately after deleting post or comment metadata of a specific type.

This is one of the variants of the dynamic hook deleted_(meta_type)meta

Usage

add_action( 'deleted_usermeta', 'wp_kama_deleted_usermeta_action' );

/**
 * Function for `deleted_usermeta` action-hook.
 * 
 * @param int $meta_id Deleted metadata entry ID.
 *
 * @return void
 */
function wp_kama_deleted_usermeta_action( $meta_id ){

	// action...
}
$meta_id(int)
Deleted metadata entry ID.

Changelog

Since 3.4.0 Introduced.

Where the hook is called

delete_metadata_by_mid()
deleted_usermeta
delete_usermeta()
deleted_usermeta
wp-includes/meta.php 1088
do_action( "deleted_{$meta_type}meta", $meta_id );
wp-includes/deprecated.php 2250
do_action( 'deleted_usermeta', $cur->umeta_id, $user_id, $meta_key, $meta_value );

Where the hook is used in WordPress

Usage not found.