Ahoy there! Modernize your WordPress development and ship your WordPress themes faster than ever. PressGang anchors your workflow in modern development practices. Build cleaner, faster, smarter themes and navigate your development course to calmer seas.
๐ Read the full documentation at docs.pressgang.dev
PressGang is a WordPress parent theme framework that brings Timber and Twig templating, MVC-inspired controllers that act as view models, and Laravel-inspired, config-driven bootstrapping (convention over configuration) to WordPress โ all on a modern Composer and PSR-4 foundation. Build child themes on a clean, opinionated architecture with a clear separation of concerns, and spend your time on features, not plumbing.
- ๐ Rapid Development โ A solid foundation and conventions that accelerate theme development with clean, modern PHP.
- ๐ฒ Timber + Twig โ Built on Timber to separate template markup from PHP logic through the Twig templating engine.
- ๐ฎ Controller Architecture โ MVC-inspired controllers act as view models, preparing context for templates with a clear separation of concerns.
- โ Convention over Configuration โ Inspired by frameworks like Laravel, repetitive WordPress tasks are bootstrapped via declarative config files โ less boilerplate, more building.
- ๐ฆ Composer & PSR-4 โ Dependency management via Composer and PSR-4 autoloading for a consistent, modern codebase.
- ๐ง Flexible by Design โ Keeps the core WordPress structure intact. Leverage everything you already know while gaining powerful tools and conventions.
Everything in PressGang starts with a config file. Arrays in config/ declare what gets registered โ post types, taxonomies, sidebars, blocks, scripts, styles, and more. Each config file maps to a class in src/Configuration/ by convention (e.g. config/sidebars.php โ Sidebars). No queries, no side effects โ just declarative registration.
Controllers live in src/Controllers/ and are view models, not request handlers. Each controller extends AbstractController, gathers data via Timber, builds a context array, and selects a template. They must be side-effect free โ no writes, no remote requests, no direct rendering.
Context wiring is declarative: list the template contract in protected array $context_getters = [ 'news', 'events' ] and each key is populated from its get_{key}() getter โ no get_context() boilerplate.
Opt-in via config/service-providers.php (add
TemplateRoutingServiceProvider alongside the defaults) โ existing themes
built on explicit template stubs are untouched by framework upgrades.
Once enabled, requests route to controllers by convention โ most themes
need no template PHP files at all. WordPress's template hierarchy candidates are
recorded per request, kebab-case twins are added for underscored post
type/taxonomy names (taxonomy-event_type also matches
taxonomy-event-type), and when a request falls through to a parent-theme
template the dispatcher resolves a child controller:
searchโSearchController,front-pageโFrontPageController(StudlyCase)archive-eventโEventsController(plural for archives)single-eventโEventController,taxonomy-event-typeโEventTypeController(singular subjects)
The matching {candidate}.twig renders when the child theme has one.
config/controllers.php maps any name that defies convention, and a
physical template file in the child theme always wins โ keep one only for
genuine logic (e.g. conditional controller selection).
Page templates are file-less too: config/page-templates.php registers
them ('page-templates/contact-page.php' => 'Contact Page' โ legacy
file-shaped ids keep existing page assignments working), and each resolves
to {Slug}Controller or falls back to PageController with {slug}.twig.
Explicit routing still works โ and always takes precedence. A template stub in the child theme renders exactly what it says, which is how existing PressGang themes are built and how a theme adopts convention routing incrementally (delete stubs one at a time):
<?php
// archive-event.php
use MyTheme\Controllers\EventsController;
PressGang\PressGang::render(
controller: EventsController::class,
twig: 'archive-event.twig'
);Context managers enrich the global Timber::context() with data needed across many templates โ menus, site info, theme mods, ACF option pages. They implement ContextManagerInterface, are registered via config/context-managers.php, and must be safe to run on every request (frontend, admin, AJAX, CLI).
All custom Twig functions, filters, and globals are registered through extension managers configured in config/twig-extensions.php. Twig remains a presentation-only layer โ no database queries, no mutations, no business logic.
Timber Twig environment options (including compilation cache) are configured through config/timber.php, allowing child themes to opt in per project.
Gutenberg blocks are declared in config/blocks.php and live under blocks/<block-name>/ with a block.json and Twig template. Snippets are reusable view partials registered via config/snippets.php โ self-contained, explicitly parameterised UI components.
- PHP 8.3+
- WordPress 6.4+
- For PHP 8.5 runtime support, use WordPress 6.9+
- Timber 2.0+
- Composer
PressGang is a WordPress parent theme that acts as a framework for your child theme.
The fastest way to weigh anchor is with the pressgang-child starter repo:
git clone https://github.com/pressgang-wp/pressgang-child your-theme-name
cd your-theme-name
composer installThen follow the instructions in that repo's README to configure your child theme.
-
Clone PressGang into your
wp-content/themes/directory:git clone https://github.com/pressgang-wp/pressgang
-
Create your own child theme that extends PressGang.
Require PressGang as a dependency in your child theme:
composer require pressgang-wp/pressgangcomposer install # install dev dependencies
composer test # run the unit test suite
composer test:compat # run tests with strict PHP error reportingTests use PHPUnit + BrainMonkey โ no WordPress installation required. See the Testing docs for details on writing new tests.
Uncover the buried treasure at: docs.pressgang.dev
PressGang is open-sourced software licensed under the MIT license.
