WordPress Version: 6.3
/**
* Handles restoring a post from the Trash via AJAX.
*
* @since 3.1.0
*
* @param string $action Action to perform.
*/
function wp_ajax_untrash_post($action)
{
if (empty($action)) {
$action = 'untrash-post';
}
wp_ajax_trash_post($action);
}