site_status_tests

Advertisement

Summery Summery

Add or modify which site status tests are run on a site.

Syntax Syntax

apply_filters( 'site_status_tests', array $test_type )

Description Description

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.

Parameters Parameters

$test_type

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.

  • 'identifier'
    (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.
    • 'label'
      (string) A friendly label for your test to identify it by.
    • 'test'
      (mixed) A callable to perform a direct test, or a string Ajax action to be called to perform an async test.

Source Source

File: wp-admin/includes/class-wp-site-health.php

Advertisement

Changelog Changelog

Changelog
Version Description
5.2.0 Introduced.

Advertisement

Leave a Reply