Project Type: WordPress Reference

Comment Hooks

Actions and filters for customizing the WordPress comment system. Query Hooks Actions pre_get_comments Fires before comments are retrieved. do_action_ref_array( 'pre_get_comments', array( &$query ) ); Parameters: $query (WP_Comment_Query) - Query instance...

WordPress Bootstrap Hooks

Hooks fired during WordPress initialization and request handling, in execution order. Early Bootstrap Hooks These hooks fire before plugins load. They can only be used by mu-plugins or by pre-defining...

Cache API

In-memory object caching system for reducing database queries and expensive computations. Since: 2.0.0 Source: wp-includes/cache.php, wp-includes/class-wp-object-cache.php, wp-includes/cache-compat.php Components Component Description functions.md Public cache functions class-wp-object-cache.md Core cache implementation hooks.md Cache-related...

WP_Object_Cache

Core class that implements an in-memory object cache. Since: 2.0.0 Source: wp-includes/class-wp-object-cache.php Description The WordPress Object Cache stores data in memory to reduce database queries. It uses a key/group system...

Cache Functions

Public API functions for the WordPress Object Cache. Source: wp-includes/cache.php, wp-includes/cache-compat.php Initialization wp_cache_init() Sets up the Object Cache global and assigns it. wp_cache_init(): void Since: 2.0.0 Creates the global $wp_object_cache...

Cache Hooks

Actions and filters related to the WordPress Object Cache. Source: Various WordPress core files Overview The Object Cache API itself has minimal hooks. Most cache-related hooks are in components that...

WP_Comment_Query

Core class for querying comments from the database. Since: 3.1.0 Source: wp-includes/class-wp-comment-query.php Overview WP_Comment_Query retrieves comments based on specified criteria. It supports filtering, pagination, meta queries, date queries, and hierarchical...

Bookmark Functions Reference

Data Retrieval Functions get_bookmark() Retrieves bookmark data by ID or object. get_bookmark( $bookmark, $output = OBJECT, $filter = 'raw' ) Parameters: Parameter Type Default Description $bookmark int|stdClass — Bookmark ID...

Bookmark Hooks Reference

Filters get_bookmarks Filters the returned list of bookmarks from get_bookmarks(). apply_filters( 'get_bookmarks', array $bookmarks, array $parsed_args ) Parameters: Parameter Type Description $bookmarks array List of bookmark objects $parsed_args array Parsed...

WordPress Bootstrap/Loading System

Overview WordPress follows a carefully orchestrated loading sequence that initializes the environment, loads core functionality, and prepares the system for request handling. This document outlines the complete bootstrap process. Loading...

← Back to Chubes.net