WP_HTTP_Requests_Response::set_status() WordPress Method
The set_status() method is used to set the HTTP status code for the response. This is an integer value between 100 and 599. The default value is 200 (OK).
WP_HTTP_Requests_Response::set_status( int $code ) #
Sets the 3-digit HTTP status code.
Parameters
- $code
(int)(Required)HTTP status.
Source
File: wp-includes/class-wp-http-requests-response.php
public function set_status( $code ) { $this->response->status_code = absint( $code ); }
Expand full source codeCollapse full source codeView on TracView on GitHub
Changelog
Version | Description |
---|---|
4.6.0 | Introduced. |