wp_untrash_post_set_previous_status()WP 5.6.0

Filters callback which sets the status of an untrashed post to its previous status.

This can be used as a callback on the wp_untrash_post_status

No Hooks.

Return

String. The new status of the post.

Usage

wp_untrash_post_set_previous_status( $new_status, $post_id, $previous_status );
$new_status(string) (required)
The new status of the post being restored.
$post_id(int) (required)
The ID of the post being restored.
$previous_status(string) (required)
The status of the post at the point where it was trashed.

Changelog

Since 5.6.0 Introduced.

wp_untrash_post_set_previous_status() code WP 6.5.2

function wp_untrash_post_set_previous_status( $new_status, $post_id, $previous_status ) {
	return $previous_status;
}