do_action( "deleted_{$meta_type}meta", int $meta_id )

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


Description

The dynamic portion of the hook name, $meta_type, refers to the meta object type (post or comment).

Possible hook names include:

  • deleted_postmeta
  • deleted_commentmeta
  • deleted_termmeta
  • deleted_usermeta

Top ↑

Parameters

$meta_id int
Deleted metadata entry ID.

Top ↑

Source

File: wp-includes/meta.php. View all references

do_action( "deleted_{$meta_type}meta", $meta_id );


Top ↑

Changelog

Changelog
Version Description
3.4.0 Introduced.

Top ↑

User Contributed Notes

You must log in before being able to contribute a note or feedback.