Used By
Used By | Description |
---|---|
wp-admin/includes/class-wp-site-health.php: WP_Site_Health::get_tests() | Return a set of tests that belong to the site status page. |
Add or modify which site status tests are run on a site.
The site health is determined by a set of tests based on best practices from both the WordPress Hosting Team, but also web standards in general.
Some sites may not have the same requirements, for example the automatic update checks may be handled by a host, and are therefore disabled in core. Or maybe you want to introduce a new test, is caching enabled/disabled/stale for example.
Tests may be added either as direct, or asynchronous ones. Any test that may require some time to complete should run asynchronously, to avoid extended loading periods within wp-admin.
(array) An associative array, where the $test_type
is either direct
or async
, to declare if the test should run via Ajax calls after page load.
(array) $identifier
should be a unique identifier for the test that should run. Plugins and themes are encouraged to prefix test identifiers with their slug to avoid any collisions between tests.
(string) A friendly label for your test to identify it by.
(mixed) A callable to perform a direct test, or a string Ajax action to be called to perform an async test.
Version | Description |
---|---|
5.2.0 | Introduced. |
© 2003–2019 WordPress Foundation
Licensed under the GNU GPLv2+ License.
https://developer.wordpress.org/reference/hooks/site_status_tests