deleted_postmeta
Fires immediately after deleting metadata for a post.
Description
Parameters (1)
- 0. $meta_ids (array)
- An array of deleted post metadata entry IDs.
Usage
- To run the hook, copy the example below.
- // run the action
- do_action( 'deleted_postmeta', $meta_ids );
- The following example is for adding a hook callback.
- // define the deleted_postmeta callback
- function action_deleted_postmeta( $meta_ids ) {
- // make action magic happen here...
- };
- // add the action
- add_action( 'deleted_postmeta', 'action_deleted_postmeta', 10, 1 );
- To remove a hook callback, use the example below.
- // remove the action
- remove_action( 'deleted_postmeta', 'action_deleted_postmeta', 10, 1 );
Defined (1)
The action is defined in the following location(s).
- /wp-includes/meta.php
- do_action( 'deleted_postmeta', $meta_ids );