Filters the output of a finished Site Health test.
Parameters
$test_resultarray
{ An associative array of test result data. @type string $label A label describing the test, and is used as a header in the output. @type string $status The status of the test, which can be a value of good, recommended or critical. @type array $badge { Tests are put into categories which have an associated badge shown, these can be modified and assigned here. @type string $label The test label, for example Performance. @type string $color Default blue. A string representing a color to use for the label. } @type string $description A more descriptive explanation of what the test looks for, and why it is important for the end user. @type string $actions An action to direct the user to where they can resolve the issue, if one exists. @type string $test The name of the test being ran, used as a reference point.}
$labelstring
A label describing the test, and is used as a header in the output.
$statusstring
The status of the test, which can be a value of good, recommended or critical.
$badgearray
Tests are put into categories which have an associated badge shown, these can be modified and assigned here.
$labelstring
The test label, for example Performance.
$colorstring
Default blue. A string representing a color to use for the label. } @type string $description A more descriptive explanation of what the test looks for, and why it is important for the end user.
$actionsstring
An action to direct the user to where they can resolve the issue, if one exists.
$teststring
The name of the test being ran, used as a reference point.
188*}189* @type string$descriptionA more descriptive explanation of what the test looks for,and why it is important for the end user.190* @type string$actions An action to direct the user to where they can resolve the issue,if one exists.191* @type string$test The name of the test being ran, used as a reference point.192*}193*/194returnapply_filters('site_status_test_result',call_user_func($callback));195}196197/**198* Runs the SQL version checks.199*200* These values are used in later tests, but the part of preparing them is more easily managed
History
Introduced in 5.3.0. Unchanged from 6.7.7 through 7.1.0.