is_client_error()WP 1.0

Хуков нет.

Возвращает

null. Ничего (null).

Использование

is_client_error ( $sc );
$sc (обязательный)
-

Код is_client_error() WP 6.5.2

function is_client_error ($sc) {
	return $sc >= 400 && $sc < 500;
}