wp_recovery_mode(): WP_Recovery_Mode

In this article

Access the WordPress Recovery Mode instance.

Return

WP_Recovery_Mode

Source

function wp_recovery_mode() {
	static $wp_recovery_mode;

	if ( ! $wp_recovery_mode ) {
		$wp_recovery_mode = new WP_Recovery_Mode();
	}

	return $wp_recovery_mode;
}

Changelog

VersionDescription
5.2.0Introduced.

User Contributed Notes

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