wp_delete_post_revision WordPress Action Hook

The wp_delete_post_revision hook is called when a revision is deleted from the database. This hook can be used to clean up any data associated with the revision, such as meta data or custom fields.

do_action( 'wp_delete_post_revision', int $revision_id, WP_Post $revision ) #

Fires once a post revision has been deleted.


Parameters

$revision_id

(int)Post revision ID.

$revision

(WP_Post)Post revision object.


Top ↑

Source

File: wp-includes/revision.php

View on Trac



Top ↑

Changelog

Changelog
VersionDescription
2.6.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.