WP_HTTP_Requests_Response::set_status( int $code )

Sets the 3-digit HTTP status code.


Description Description


Parameters Parameters

$code

(int) (Required) HTTP status.


Top ↑

Source Source

File: wp-includes/class-wp-http-requests-response.php

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

Top ↑

Changelog Changelog

Changelog
Version Description
4.6.0 Introduced.


Top ↑

User Contributed Notes User Contributed Notes

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