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

Constructor.


Parameters

$url string Required
URL to request.
$request array Required
Request data in WP_Http format.

Top ↑

Source

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

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


Top ↑

User Contributed Notes

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