Requests_Response::is_redirect() WordPress Method
The Requests_Response::is_redirect() method is used to check if a response is a redirect or not. This is useful for checking if a response is a redirect before following it.
Requests_Response::is_redirect() #
Is the response a redirect?
Return
(boolean) True if redirect (3xx status), false if not.
Source
File: wp-includes/Requests/Response.php
public function is_redirect() { $code = $this->status_code; return in_array($code, array(300, 301, 302, 303, 307), true) || $code > 307 && $code < 400; }
Expand full source codeCollapse full source codeView on TracView on GitHub