WP_HTTP_Response::set_status( int $code )

In this article

Sets the 3-digit HTTP status code.

Parameters

$codeintrequired
HTTP status.

Source

public function set_status( $code ) {
	$this->status = absint( $code );
}

Changelog

VersionDescription
4.4.0Introduced.

User Contributed Notes

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