delete_attachment WordPress Action Hook

The delete_attachment hook is called whenever an attachment is deleted from the WordPress media library. This hook can be used to perform any actions that need to be taken when an attachment is deleted, such as cleaning up any associated files or data.

do_action( 'delete_attachment', int $post_id, WP_Post $post ) #

Fires before an attachment is deleted, at the start of wp_delete_attachment().


Parameters

$post_id

(int)Attachment ID.

$post

(WP_Post)Post object.


Top ↑

More Information

Up to and including WordPress 2.7, it is fired ”after” the attachment is deleted from the database and the file system, limiting its usefulness. As of changeset #10400 (WordPress 2.8), the action will fire ”before” anything is deleted.


Top ↑

Source

File: wp-includes/post.php

View on Trac



Top ↑

Changelog

Changelog
VersionDescription
5.5.0Added the $post parameter.
2.0.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.

Show More
Show More