Project Type: WordPress Reference

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

WP_Block_Templates_Registry

Core class for interacting with registered templates. Since: 6.7.0 Source: wp-includes/class-wp-block-templates-registry.php Description WP_Block_Templates_Registry is a singleton that allows plugins to programmatically register block templates. This provides a way to define...

WP_Block_Type_Registry

Core class for interacting with registered block types. Since: 5.0.0 Source: wp-includes/class-wp-block-type-registry.php Description WP_Block_Type_Registry is a singleton that stores all registered block types. It provides methods to register, unregister, and...

WP_Block_Type

Core class representing a block type definition. Since: 5.0.0 Source: wp-includes/class-wp-block-type.php Description WP_Block_Type defines a registered block type with its metadata, attributes schema, render callback, and asset handles. Block types...

WP_Block

Class representing a parsed instance of a block ready for rendering. Since: 5.5.0 Source: wp-includes/class-wp-block.php Description WP_Block represents a single parsed block with its attributes prepared for rendering, context resolved...

Blocks API Functions

Public functions for block registration, parsing, rendering, and utilities. Block Registration register_block_type() Registers a block type. The recommended way is to register using block.json metadata. register_block_type( string|WP_Block_Type $block_type, array $args...

Blocks API Hooks

Actions and filters for the WordPress Blocks API. Block Registration Filters register_block_type_args Filters the arguments for registering a block type. apply_filters( 'register_block_type_args', array $args, string $block_type ) Parameters: $args (array)...

WordPress Bookmarks/Links Manager

Overview The WordPress Bookmarks API (also known as Links Manager) is a legacy feature that was included in WordPress for managing blogroll links. It was hidden from the WordPress admin...

← Back to Chubes.net