WP_REST_Response::is_error(): bool

In this article

Checks if the response is an error, i.e. >= 400 response code.

Return

bool Whether the response is an error.

Source

public function is_error() {
	return $this->get_status() >= 400;
}

Changelog

VersionDescription
4.4.0Introduced.

User Contributed Notes

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