wp_ajax_untrash_post( string $action )

Handles restoring a post from the Trash via AJAX.


Parameters

$action string Required
Action to perform.

Top ↑

Source

File: wp-admin/includes/ajax-actions.php. View all references

function wp_ajax_untrash_post( $action ) {
	if ( empty( $action ) ) {
		$action = 'untrash-post';
	}

	wp_ajax_trash_post( $action );
}


Top ↑

Changelog

Changelog
Version Description
3.1.0 Introduced.

Top ↑

User Contributed Notes

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