apply_filters( 'site_status_good_response_time_threshold', int $threshold )
Filters the threshold below which a response time is considered good.
Description
The default is based on https://web.dev/time-to-first-byte/.
Parameters
-
$threshold
int -
Threshold in milliseconds. Default 600.
Source
File: wp-admin/includes/class-wp-site-health.php
.
View all references
return (int) apply_filters( 'site_status_good_response_time_threshold', 600 );
Changelog
Version | Description |
---|---|
6.1.0 | Introduced. |