# site_status_test_result

URL: https://chugunov.pro/api-wordpress/filters/site_status_test_result/
Проверено на WordPress 6.9, обновлено 06.08.2026.
Источник: независимый русскоязычный справочник chugunov.pro. Не является официальной документацией WordPress.

Тип: хук-фильтр.
Появился в версии: 5.3.0.

## Сигнатура

```php
apply_filters( 'site_status_test_result', array $test_result )
```

## Описание

Фильтрует результат завершённого теста «Здоровье сайта».

## Параметры

- `$test_result` `array` — обязательный. An associative array of test result data.
  
  - `label` string A label describing the test, and is used as a header in the output.
  
  - `status` string The status of the test, which can be a value of `good`, `recommended` or `critical`.
  
  - `badge` array Tests are put into categories which have an associated badge shown, these can be modified and assigned here.
  
  - `label` string The test label, for example `Performance`.
  
  - `color` string Default `blue`. A string representing a color to use for the label.
  
  - `description` string A more descriptive explanation of what the test looks for, and why it is important for the end user.
  
  - `actions` string An action to direct the user to where they can resolve the issue, if one exists.
  
  - `test` string The name of the test being ran, used as a reference point.
  
  [Source](#source)
  
  ```
  return apply_filters( 'site_status_test_result', call_user_func( $callback ) );
  ```
  
  [View all references](https://developer.wordpress.org/reference/files/wp-admin/includes/class-wp-site-health.php/) [View on Trac](https://core.trac.wordpress.org/browser/tags/7.0/src/wp-admin/includes/class-wp-site-health.php#L194) [View on GitHub](https://github.com/WordPress/wordpress-develop/blob/7.0/src/wp-admin/includes/class-wp-site-health.php#L194-L194)
  
  [Related](#related) Used by | Description |
  [WP_Site_Health::perform_test()](https://developer.wordpress.org/reference/classes/wp_site_health/perform_test/)`wp-admin/includes/class-wp-site-health.php` | Runs a Site Health test directly.
  |
  
  [Changelog](#changelog) Version | Description |
  [5.3.0](https://developer.wordpress.org/reference/since/5.3.0/) | Introduced. |

## Фильтруемое значение

An associative array of test result data.

- `label` string A label describing the test, and is used as a header in the output.

- `status` string The status of the test, which can be a value of `good`, `recommended` or `critical`.

- `badge` array Tests are put into categories which have an associated badge shown, these can be modified and assigned here.

- `label` string The test label, for example `Performance`.

- `color` string Default `blue`. A string representing a color to use for the label.

- `description` string A more descriptive explanation of what the test looks for, and why it is important for the end user.

- `actions` string An action to direct the user to where they can resolve the issue, if one exists.

- `test` string The name of the test being ran, used as a reference point.

[Source](#source)

```
return apply_filters( 'site_status_test_result', call_user_func( $callback ) );
```

[View all references](https://developer.wordpress.org/reference/files/wp-admin/includes/class-wp-site-health.php/) [View on Trac](https://core.trac.wordpress.org/browser/tags/7.0/src/wp-admin/includes/class-wp-site-health.php#L194) [View on GitHub](https://github.com/WordPress/wordpress-develop/blob/7.0/src/wp-admin/includes/class-wp-site-health.php#L194-L194)

[Related](#related) Used by | Description |
[WP_Site_Health::perform_test()](https://developer.wordpress.org/reference/classes/wp_site_health/perform_test/)`wp-admin/includes/class-wp-site-health.php` | Runs a Site Health test directly.
|

[Changelog](#changelog) Version | Description |
[5.3.0](https://developer.wordpress.org/reference/since/5.3.0/) | Introduced. |

## Исходный код

Файл: `wp-admin/includes/class-wp-site-health.php:194`

```php
return apply_filters( 'site_status_test_result', call_user_func( $callback ) );
```

## История изменений

- 5.3.0 — Introduced.

## Связанные

Используется в: `WP_Site_Health::perform_test`.

Оригинал в официальной документации: https://developer.wordpress.org/reference/hooks/site_status_test_result/
