Project Type: WordPress Reference

WP_Interactivity_API

Main class for server-side Interactivity API processing. Source: wp-includes/interactivity-api/class-wp-interactivity-api.php Since: 6.5.0 final class WP_Interactivity_API Properties $directive_processors private static array $directive_processors Maps directive attribute names to their processor methods. Value: array(...

Interactivity API Directives

All data-wp-* directive attributes processed by the Interactivity API. Source: wp-includes/interactivity-api/class-wp-interactivity-api.php Since: 6.5.0 Directive Syntax data-wp-{directive}[--{suffix}][---{unique-id}]="[namespace::]{value}" directive: The directive name (e.g., bind, class, text) suffix: Modifier for the directive (e.g.,...

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 fsockopen transport, switched to stream_socket_client() Deprecated: 6.4.0 - Use WP_Http...

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 class for making outgoing HTTP requests in WordPress. It provides...

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 Parameters: Parameter Type Description $url string The request URL $args...

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 for an HTTP request. apply_filters( 'http_request_timeout', float $timeout_value, string $url...

WordPress HTTP API Overview

The WordPress HTTP API provides a standardized interface for making HTTP requests. It abstracts away the complexity of different PHP configurations and provides a consistent, secure way to communicate with...

HTTPS Functions

Detection and migration functions for WordPress HTTPS support. Source: wp-includes/https-detection.php, wp-includes/https-migration.php Detection Functions wp_is_using_https() Checks whether the website is using HTTPS (both home and site URLs). wp_is_using_https(): bool Returns true...

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 response data. It's primarily used in the REST API for...

← Back to Chubes.net