untrashed_post WordPress Action Hook
The untrashed_post hook is called whenever a post is restored from the trash. This hook can be used to perform cleanup tasks such as removing custom fields or metadata associated with the post.
do_action( 'untrashed_post', int $post_id , string $previous_status ) #
Fires after a post is restored from the Trash.
Parameters
- $post_id
(int)Post ID.
- $previous_status
(string)The status of the post at the point where it was trashed.
Source
File: wp-includes/post.php
Changelog
Version | Description |
---|---|
5.6.0 | The $previous_status parameter was added. |
2.9.0 | Introduced. |