Project Type: WordPress Reference

Interactivity API Functions

Global wrapper functions for the Interactivity API. Source: wp-includes/interactivity-api/interactivity-api.php wp_interactivity() Retrieves the main WP_Interactivity_API instance. function wp_interactivity(): WP_Interactivity_API Since: 6.5.0 Returns: WP_Interactivity_API — The singleton instance. Example: $api = wp_interactivity();...

Interactivity API Hooks

Filters for customizing Interactivity API behavior. Source: wp-includes/interactivity-api/class-wp-interactivity-api.php Filters script_module_data_@wordpress/interactivity Filters the data passed to the @wordpress/interactivity script module. apply_filters( 'script_module_data_@wordpress/interactivity', array $data ) Since: 6.7.0 (via WP_Interactivity_API::add_hooks()) Parameters: Name...

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_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...

HTML API

WordPress HTML parsing and modification framework providing spec-compliant HTML5 processing. Since: 6.2.0 Source: wp-includes/html-api/ Components Component Description class-wp-html-tag-processor.md Tag-level HTML scanner and modifier class-wp-html-processor.md Full HTML5 parser with tree construction...

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 HTTP cookie in WordPress. It handles parsing Set-Cookie headers, validating...

← Back to Chubes.net