WP_HTTP_Requests_Hooks::__construct( string $url, array $request )

Constructor.


Description Description


Parameters Parameters

$url

(string) (Required) URL to request.

$request

(array) (Required) Request data in WP_Http format.


Top ↑

Source Source

File: wp-includes/class-wp-http-requests-hooks.php

	public function __construct( $url, $request ) {
		$this->url     = $url;
		$this->request = $request;
	}


Top ↑

User Contributed Notes User Contributed Notes

You must log in before being able to contribute a note or feedback.