Alert: This function’s access is marked private. This means it is not intended for use by plugin or theme developers, only in other core functions. It is listed here for completeness.

WP_Recovery_Mode_Key_Service::remove_key( string $token )

Removes a used recovery key.


Description Description


Parameters Parameters

$token

(string) (Required) The token used when generating a recovery mode key.


Top ↑

Source Source

File: wp-includes/class-wp-recovery-mode-key-service.php

	private function remove_key( $token ) {

		$records = $this->get_keys();

		if ( ! isset( $records[ $token ] ) ) {
			return;
		}

		unset( $records[ $token ] );

		$this->update_keys( $records );
	}

Top ↑

Changelog Changelog

Changelog
Version Description
5.2.0 Introduced.


Top ↑

User Contributed Notes User Contributed Notes

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