AgentSkillsCN

fse-architecture

Oh My Brand!主题的架构与项目结构。了解目录布局、数据流、资产管道以及theme.json配置,有助于深入理解项目组织方式。

SKILL.md
--- frontmatter
name: fse-architecture
description: Oh My Brand! theme architecture and project structure. Directory layout, data flow, asset pipeline, and theme.json configuration. Use for understanding project organization.
metadata:
  author: Wesley Smits
  version: "1.0.0"

FSE Architecture

Project architecture and structure for the Oh My Brand! WordPress FSE theme.


When to Use

  • Understanding the project directory structure
  • Locating files and understanding their purpose
  • Understanding how blocks are organized
  • Understanding the build process and asset flow
  • Configuring theme.json settings

Reference Files

FilePurpose
theme.jsontheme.json structure and tokens

Project Structure

code
oh-my-brand/
├── AGENT.md               # AI assistant guidelines
├── functions.php          # Theme setup, hooks, registration
├── style.css              # Theme metadata (required by WP)
├── theme.json             # Global styles, settings, blocks
│
├── src/                   # Source files (@wordpress/scripts)
│   └── blocks/           # Native WordPress blocks
│       ├── gallery/      # Gallery carousel block
│       ├── faq/          # FAQ accordion block
│       └── utils/        # Shared utilities
│
├── build/                 # Compiled output (generated)
│   └── blocks/           # Built block assets
│
├── blocks/                # ACF custom blocks
│   ├── acf-faq/          # FAQ ACF block
│   └── acf-gallery-block/# Gallery ACF block
│
├── assets/                # Static assets
│   ├── css/              # Global stylesheets
│   ├── js/               # Compiled JavaScript
│   └── icons/            # SVG icons
│
├── includes/              # PHP includes
│   ├── assets.php        # Asset registration
│   └── block-helpers.php # Block utilities
│
├── acf-json/              # ACF field groups (auto-sync)
├── patterns/              # Block patterns
├── tests/                 # Test files
└── docs/                  # Documentation

Theme Architecture

Parent-Child Relationship

code
WordPress Core
      │
      ▼
Ollie Parent Theme
  • Base FSE templates
  • Default block styles
      │
      ▼
Oh My Brand! Child Theme
  • Custom blocks (native + ACF)
  • Extended theme.json
  • Brand-specific styles

File Loading Order

  1. WordPress Core loads first
  2. Ollie Parent Theme functions.php
  3. Oh My Brand! functions.php
  4. theme.json merges (child overrides parent)
  5. Block assets loaded per-block when rendered

Block Organization

Native Blocks (src/blocks/)

Built with @wordpress/scripts, compiled to build/blocks/:

FilePurpose
block.jsonBlock metadata
index.jsRegistration entry
edit.tsxEditor component
render.phpServer-side render
helpers.phpHelper functions
style.cssFrontend styles
view.tsFrontend Web Component

ACF Blocks (blocks/)

ACF PRO blocks, not compiled:

FilePurpose
block.jsonACF block metadata
render.phpRender template
helpers.phpHelper functions
style.cssBlock styles

Key Differences

AspectNative BlockACF Block
Locationsrc/blocks/blocks/
Name prefixtheme-oh-my-brand/acf/
Data source$attributesget_field()
Editor UIReact componentACF fields
BuildRequiredNot required

Asset Pipeline

Build Process

code
Source                    Build Output
──────                    ────────────
src/blocks/gallery/
├── index.js         →    build/blocks/gallery/
├── edit.tsx              ├── index.js
├── view.ts               ├── view.js
├── style.css             ├── style-index.css
└── editor.css            └── index.css

Commands

CommandPurpose
pnpm run buildProduction build
pnpm run startWatch mode
pnpm run lintRun all linters

Asset Loading

PropertyWhen Loaded
styleBlock rendered (frontend + editor)
editorStyleBlock in editor
viewScriptBlock on frontend page

Data Flow

Native Block Data Flow

code
block.json (attributes) → edit.tsx (editor state)
      ↓
$attributes (saved to post)
      ↓
render.php (server render)
      ↓
view.ts (frontend interactivity)

ACF Block Data Flow

code
ACF Field Group (acf-json/) → WordPress Editor (ACF forms)
      ↓
get_field() (post meta)
      ↓
render.php (server render)

theme.json Configuration

Structure

See theme.json for complete structure example.

Design Tokens

Token TypeCSS Variable
Colorsvar(--wp--preset--color--primary)
Spacingvar(--wp--preset--spacing--20)
Typographyvar(--wp--preset--font-family--body)
Layoutvar(--wp--style--global--content-size)

Related Skills


References