WP_Site_Health::get_instance(): WP_Site_Health|null

In this article

Returns an instance of the WP_Site_Health class, or create one if none exist yet.

Return

WP_Site_Health|null

Source

public static function get_instance() {
	if ( null === self::$instance ) {
		self::$instance = new WP_Site_Health();
	}

	return self::$instance;
}

Changelog

VersionDescription
5.4.0Introduced.

User Contributed Notes

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