do_action( ‘untrash_post’, int $post_id, string $previous_status )

Fires before a post is restored from the Trash.

Parameters

$post_idint
Post ID.
$previous_statusstring
The status of the post at the point where it was trashed.

Source

do_action( 'untrash_post', $post_id, $previous_status );

Changelog

VersionDescription
5.6.0Added the $previous_status parameter.
2.9.0Introduced.

User Contributed Notes

  1. Skip to note 2 content

    To get the id of all posts that have been restored when selecting multiples, you must use the

    $_GET['post']

    Like that example below:

    function wpdocs_untrash_multiple_posts( $post_id = '' ) {
        // Verify if is restoring multiple posts
        if ( isset( $_GET['post'] ) && is_array( $_GET['post'] ) ) {
            foreach( $_GET['post'] as $post_id ) {
                wpdocs_your_function( $post_id );
            }
        } else {
            wpdocs_your_function( $post_id );
        }
    }
    add_action( 'untrash_post', 'wpdocs_untrash_multiple_posts' );

You must log in before being able to contribute a note or feedback.