WP_Site_Health::get_instance()
Return an instance of the WP_Site_Health class, or create one if none exist yet.
Return Return
(WP_Site_Health|null)
Source Source
File: wp-admin/includes/class-wp-site-health.php
public static function get_instance() { if ( null === self::$instance ) { self::$instance = new WP_Site_Health(); } return self::$instance; }
Expand full source code Collapse full source code View on Trac
Changelog Changelog
Version | Description |
---|---|
5.4.0 | Introduced. |