WP_HTTP_Response::set_status() WordPress Method
The WP_HTTP_Response::set_status() method is used to set the HTTP status code for the current response.
WP_HTTP_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-response.php
public function set_status( $code ) { $this->status = absint( $code ); }
Expand full source codeCollapse full source codeView on TracView on GitHub
Changelog
Version | Description |
---|---|
4.4.0 | Introduced. |