deleted_{$meta_type}meta WordPress Action Hook

The deleted_{$meta_type}meta hook is triggered when meta data is deleted from a post or user.

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

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_ids

(int)Deleted metadata entry ID.


Top ↑

Source

File: wp-includes/meta.php

View on Trac



Top ↑

Changelog

Changelog
VersionDescription
3.4.0Introduced.

The content displayed on this page has been created in part by processing WordPress source code files which are made available under the GPLv2 (or a later version) license by theĀ Free Software Foundation. In addition to this, the content includes user-written examples and information. All material is subject to review and curation by the WPPaste.com community.