We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
/** * Callback function for the 'http_response' filter. * * @param mixed $response * @param mixed $parsed_args * @param string $url * @return mixed The filtered value. */ function my_http_response_callback( $response, $parsed_args, string $url ) { // Your code here. return $response; } add_filter( 'http_response', 'my_http_response_callback', 10, 3 );
$response
$parsed_args
$args
string
$url
apply_filters( 'http_response', $response, $parsed_args, $url )
\apply_filters( 'http_response', $response, $args, $url )
← All Hooks