Project Type: WordPress Reference

Template Tags System

Template tags are WordPress functions designed for use in theme template files. They output dynamic content, generate HTML markup, and provide access to site data directly within templates. Core Concept...

CSS Generation

How WordPress generates CSS from theme.json configurations. Overview WordPress processes theme.json and generates: CSS Custom Properties (variables) from settings Utility Classes for presets Global Styles from styles configuration Block Styles...

Custom Templates

Complete reference for customTemplates in theme.json. Overview The customTemplates array registers custom page/post templates that users can select in the editor. { "customTemplates": [ { "name": "blank", "title": "Blank", "postTypes":...

Patterns

Complete reference for patterns in theme.json. Overview The patterns array registers block patterns that are bundled with or referenced by your theme. { "patterns": [ "theme-slug/hero-section", "theme-slug/cta-newsletter", "theme-slug/testimonials" ] }...

Template Tag Hooks

Template tags provide extensive hooks for customization. This documents the key actions and filters available. Template Loading Hooks Action: get_header Fires before the header template is loaded. do_action( 'get_header', $name,...

WP_Term_Query

Class used for querying terms from the database. Source: wp-includes/class-wp-term-query.php Since: 4.6.0 Class Declaration #[AllowDynamicProperties] class WP_Term_Query Properties Property Type Visibility Description $request string public SQL string used to perform...

WP_Term

Core class used to implement the WP_Term object. Represents a single taxonomy term. Source: wp-includes/class-wp-term.php Since: 4.4.0 Class Declaration #[AllowDynamicProperties] final class WP_Term Properties Property Type Visibility Description $term_id int...

Taxonomy API Functions

Core functions for taxonomy and term registration, retrieval, and management. Source: wp-includes/taxonomy.php Taxonomy Registration register_taxonomy() Creates or modifies a taxonomy object. register_taxonomy( string $taxonomy, array|string $object_type, array|string $args = array()...

Taxonomy API Hooks

Actions and filters for the Taxonomy API. Taxonomy Registration registered_taxonomy Fires after a taxonomy is registered. do_action( 'registered_taxonomy', string $taxonomy, array|string $object_type, array $args ) Parameter Type Description $taxonomy string...

Taxonomy API

Framework for classifying and organizing WordPress content through hierarchical and non-hierarchical term groupings. Since: 2.3.0 Source: wp-includes/taxonomy.php, wp-includes/class-wp-taxonomy.php, wp-includes/class-wp-term.php, wp-includes/class-wp-term-query.php Components Component Description functions.md Core registration, retrieval, and manipulation functions...

← Back to Chubes.net