WP_Recovery_Mode::is_initialized()publicWP 5.2.0

Checks whether recovery mode has been initialized.

Recovery mode should not be used until this point. Initialization happens immediately before loading plugins.

Method of the class: WP_Recovery_Mode{}

No Hooks.

Return

true|false.

Usage

$WP_Recovery_Mode = new WP_Recovery_Mode();
$WP_Recovery_Mode->is_initialized();

Changelog

Since 5.2.0 Introduced.

WP_Recovery_Mode::is_initialized() code WP 6.5.2

public function is_initialized() {
	return $this->is_initialized;
}