Http
WordPress HTTP API Overview
The WordPress HTTP API provides a standardized interface for making HTTP requests. It abstracts away the complexity of different PHP...
WP_Http Class
Core class used for managing HTTP transports and making HTTP requests. File: wp-includes/class-wp-http.php Since: 2.7.0 Overview WP_Http is the primary...
WordPress HTTP API Functions
Request Functions wp_remote_request() Performs an HTTP request and returns its response. wp_remote_request( string $url, array $args = array() ): array|WP_Error...
WordPress HTTP API Hooks
This document covers all filters and actions available in the WordPress HTTP API. Request Filters http_request_timeout Filters the timeout value...
WP_Http_Streams Class
Core class used to integrate PHP Streams as an HTTP transport. File: wp-includes/class-wp-http-streams.php Since: 2.7.0 Since: 3.7.0 - Combined with...
WP_HTTP_Requests_Hooks
Source: wp-includes/class-wp-http-requests-hooks.php Since: 4.7.0 Extends: WpOrgRequestsHooks Purpose Bridge between the Requests library's internal hook system and WordPress's action/filter system. Every...
WP_HTTP_Proxy Class
Core class used to implement HTTP API proxy support. File: wp-includes/class-wp-http-proxy.php Since: 2.8.0 Overview WP_HTTP_Proxy manages proxy configuration for WordPress...
WP_HTTP_Requests_Response Class
Core wrapper object for a Requests library response for standardization. File: wp-includes/class-wp-http-requests-response.php Since: 4.6.0 Overview WP_HTTP_Requests_Response extends WP_HTTP_Response and wraps...
WP_HTTP_Response Class
Core class used to prepare HTTP responses. File: wp-includes/class-wp-http-response.php Since: 4.4.0 Overview WP_HTTP_Response is a simple container class for HTTP...
WP_HTTP_IXR_Client
Source: wp-includes/class-wp-http-ixr-client.php Since: 3.1.0 Extends: IXR_Client Purpose WordPress's XML-RPC client implementation that uses the WordPress HTTP API (wp_remote_post()) instead of...
WP_Http_Cookie Class
Core class used to encapsulate a single cookie object for internal use. File: wp-includes/class-wp-http-cookie.php Since: 2.8.0 Overview WP_Http_Cookie represents an...
WP_Http_Curl Class
Core class used to integrate cURL as an HTTP transport. File: wp-includes/class-wp-http-curl.php Since: 2.7.0 Deprecated: 6.4.0 - Use WP_Http instead...