do_action( “delete_{$meta_type}meta”, int $meta_id )

In this article

Fires immediately before 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:

  • delete_postmeta
  • delete_commentmeta
  • delete_termmeta
  • delete_usermeta

Parameters

$meta_idint
ID of the metadata entry to delete.

Source

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

Changelog

VersionDescription
3.4.0Introduced.

User Contributed Notes

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