WP_Recovery_Mode_Key_Service::get_keys(): array

In this article

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.

Gets the recovery key records.

Return

array Associative array of $token => $data pairs, where $data has keys 'hashed_key' and 'created_at'.

Source

private function get_keys() {
	return (array) get_option( $this->option_name, array() );
}

Changelog

VersionDescription
5.2.0Introduced.

User Contributed Notes

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