wpseek.com
A WordPress-centric search engine for devs and theme authors



wp_remote_retrieve_response_code › WordPress Function

Since2.7.0
Deprecatedn/a
wp_remote_retrieve_response_code ( $response )
Parameters:
  • (array|WP_Error) $response HTTP response.
    Required: Yes
Returns:
  • (int|string) The response code as an integer. Empty string if incorrect parameter given.
Defined at:
Codex:

Retrieve only the response code from the raw response.

Will return an empty string if incorrect parameter value is given.


Source

function wp_remote_retrieve_response_code( $response ) {
	if ( is_wp_error( $response ) || ! isset( $response['response'] ) || ! is_array( $response['response'] ) ) {
		return '';
	}

	return $response['response']['code'];
}