apply_filters( ‘site_status_good_response_time_threshold’, int $threshold )

In this article

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

$thresholdint
Threshold in milliseconds. Default 600.

Source

return (int) apply_filters( 'site_status_good_response_time_threshold', 600 );

Changelog

VersionDescription
6.1.0Introduced.

User Contributed Notes

You must log in before being able to contribute a note or feedback.