deleted_(meta_type)_meta
Fires immediately after deleting metadata of a specific type.
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:
Usage
add_action( 'deleted_(meta_type)_meta', 'wp_kama_deleted_meta_type_action', 10, 4 );
/**
* Function for `deleted_(meta_type)_meta` action-hook.
*
* @param string[] $meta_ids An array of metadata entry IDs to delete.
* @param int $object_id ID of the object metadata is for.
* @param string $meta_key Metadata key.
* @param mixed $_meta_value Metadata value.
*
* @return void
*/
function wp_kama_deleted_meta_type_action( $meta_ids, $object_id, $meta_key, $_meta_value ){
// action...
}
- $meta_ids(string[])
- An array of metadata entry IDs to delete.
- $object_id(int)
- ID of the object metadata is for.
- $meta_key(string)
- Metadata key.
- $_meta_value(mixed)
- Metadata value.
Changelog
| Since 2.9.0 | Introduced. |
Where the hook is called
deleted_(meta_type)_meta
deleted_(meta_type)_meta
wp-includes/meta.php 550
do_action( "deleted_{$meta_type}_meta", $meta_ids, $object_id, $meta_key, $_meta_value );
wp-includes/meta.php 1099
do_action( "deleted_{$meta_type}_meta", (array) $meta_id, $object_id, $meta->meta_key, $meta->meta_value );
Where the hook is used in WordPress
wp-includes/default-filters.php 127
add_action( 'deleted_post_meta', 'wp_cache_set_posts_last_changed' );
wp-includes/default-filters.php 132
add_action( 'deleted_user_meta', 'wp_cache_set_users_last_changed' );
wp-includes/default-filters.php 140
add_action( 'deleted_term_meta', 'wp_cache_set_terms_last_changed' );
wp-includes/default-filters.php 153
add_action( 'deleted_comment_meta', 'wp_cache_set_comments_last_changed' );
wp-includes/ms-default-filters.php 60
add_action( 'deleted_blog_meta', 'wp_cache_set_sites_last_changed' );