ralfhortt/wordpress-theme-boilerplate

There is no license information available for the latest version (dev-master) of this package.

A WordPress Boilerplate Theme by Ralf Hortt

Maintainers

Package info

github.com/Horttcore/WordPress-Theme-Boilerplate

Type:wordpress-theme

pkg:composer/ralfhortt/wordpress-theme-boilerplate

Transparency log

Statistics

Installs: 31

Dependents: 0

Suggesters: 0

Stars: 3

Open Issues: 7


README

WordPress PHP Node TypeScript 5.9.3 Rector v2.2.9 License

🛠️ Technologies

Frontend

  • SCSS
  • TypeScript

Build Tools

  • WordPress
  • Node.js

Code Quality

  • PHPStan
  • Rector
  • Stylelint
  • Pint

📚 Documentation

🚀 Installation

composer create-project ralfhortt/wordpress-theme-boilerplate

For detailed setup, see INSTALLATION.md.

💻 Development

Quick Start

npm start

Starts development watchers for assets, blocks, block styles, and theme configuration.

npm run build

Runs a production build for assets, blocks, and generated theme files.

Main Commands

Build and Watch

Command Description
npm run build Full production build
npm start Start all development watchers
npm run build:theme Build root theme.json from TypeScript config
npm run watch:theme Watch TypeScript config and rebuild theme.json
npm run generate:theme-types Refresh schema-derived theme TypeScript types

Scaffolding and Helpers

Command Description
npm run make:block Scaffold a new block
npm run make:block-config Scaffold a TypeScript block config file
npm run make:block-style Scaffold a block style variation config
npm run make:pattern Scaffold a pattern file
npm run css:clamp CSS clamp helper
npm run css:color Color conversion helper
npm run css:contrast Contrast helper

Linting and Formatting

Command Description
npm run lint Run Stylelint and PHP lint checks
npm run lint:css Run Stylelint for SCSS
npm run lint:css:fix Auto-fix Stylelint issues
npm run lint:php Run PHP lint via Composer scripts
composer run lint:php Run PHPStan analysis
composer run format Format PHP with Pint
composer run refactor Apply Rector refactors
composer run refactor:dry Preview Rector refactors

Commit Workflow

This repository enforces commit quality checks through Husky hooks:

  • Pre-commit: runs Rector and Pint on staged PHP files, then lint checks.
  • Commit-msg: enforces Conventional Commits format.

Example commit messages:

  • feat: add starter pattern scaffold
  • fix: handle empty post type input
  • chore: update lint tooling

🏗️ Theme Architecture

The project uses a TypeScript-first workflow for theme configuration.

Source of Truth

  • src/blocks/theme.ts: base theme configuration
  • src/blocks/core/: per-core-block config modules
  • theme.json: generated output consumed by WordPress

Build Flow

  1. Edit files in src/blocks/.
  2. Run npm run build:theme or npm run build.
  3. Commit source changes and generated outputs as needed by your workflow.

For full details, see .github/agents/THEME-JSON-WORKFLOW.md.