apply_filters( 'site_status_test_result', array $test_result )
Filters the output of a finished Site Health test.
Parameters
-
$test_result
array -
An associative array of test result data.
label
stringA label describing the test, and is used as a header in the output.status
stringThe status of the test, which can be a value ofgood
,recommended
orcritical
.badge
arrayTests are put into categories which have an associated badge shown, these can be modified and assigned here.label
stringThe test label, for examplePerformance
.color
stringDefaultblue
. A string representing a color to use for the label.
description
stringA more descriptive explanation of what the test looks for, and why it is important for the end user.actions
stringAn action to direct the user to where they can resolve the issue, if one exists.test
stringThe name of the test being ran, used as a reference point.
Source
File:
wp-admin/includes/class-wp-site-health.php
. View all referencesreturn apply_filters( 'site_status_test_result', call_user_func( $callback ) );
Changelog
Changelog Version Description 5.3.0 Introduced.
User Contributed Notes