apply_filters( 'site_status_test_result', array $test_result )

Filters the output of a finished Site Health test.


Parameters

$test_result

An associative array of test result data.<br>

  • 'label'
    (string) A label describing the test, and is used as a header in the output.<br>
  • 'status'
    (string) The status of the test, which can be a value of good, recommended or critical.<br>
  • 'badge'
    (array) Tests are put into categories which have an associated badge shown, these can be modified and assigned here.<br>
    • 'label'
      (string) The test label, for example Performance.<br>
    • 'color'
      (string) Default blue. A string representing a color to use for the label.<br>
  • 'description'
    (string) A more descriptive explanation of what the test looks for, and why it is important for the end user.<br>
  • 'actions'
    (string) An action to direct the user to where they can resolve the issue, if one exists.<br>
  • 'test'
    (string) The name of the test being ran, used as a reference point.<br>


Source

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

View on GitHub


Changelog

Changelog
Version Description
5.3.0 Introduced.