filtrod 5.3.0
site_status_test_result
Opis — z kodu źródłowego
Filters the output of a finished Site Health test.
Parametry
| Parametr | Typ | Opis |
|---|---|---|
$test_result | array | { 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 <code>good</code>, <code>recommended</code> or <code>critical</code>. @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 <code>Performance</code>. @type string $color Default <code>blue</code>. 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. } |
Wywołanie
Rejestracja callbackaphp
// rejestracja funkcji zwrotnej
add_filter( 'site_status_test_result', 'twoja_funkcja' );
function twoja_funkcja($param_1) {
// Twój kod
}
// rejestracja funkcji zwrotnej
add_filter( 'site_status_test_result', 'twoja_funkcja' );
function twoja_funkcja($param_1) {
// Twój kod
}Popularne w tej kategorii