pre_untrash_post WordPress Filter Hook

The pre_untrash_post hook is triggered before a post is restored from the trash. This hook can be used to perform any actions necessary before the post is restored, such as resetting custom fields or updating post meta data.

apply_filters( 'pre_untrash_post', bool|null $untrash, WP_Post $post, string $previous_status ) #

Filters whether a post untrashing should take place.


Parameters

$untrash

(bool|null)Whether to go forward with untrashing.

$post

(WP_Post)Post object.

$previous_status

(string)The status of the post at the point where it was trashed.


Top ↑

Source

File: wp-includes/post.php

View on Trac



Top ↑

Changelog

Changelog
VersionDescription
5.6.0The $previous_status parameter was added.
4.9.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