🧭Controllers
Overview
In PressGang, controllers manage the display logic for different types of pages and templates, often reflecting the WordPress template hierarchy, e.g., PageController. Conventionally, they use singular names (e.g., PostController) to represent single pages, and plural names (e.g., PostsController) to represent archive pages. Essentially, these classes build the Timber context that gets passed to the views (Twig templates).
Controllers are your first mates — they prepare everything the view needs, then hand it off cleanly.
AbstractController Base Class
The AbstractController class provides common functionalities for all controllers, including context management and template rendering.
Key Methods
__construct(string|null $template = null): Initializes the controller with the specified Twig template and attaches the baseTimber::context().get_context(): Builds and returns the context array for the template.render(): Renders the Twig template with the current context, applying PressGang filters and actions.
Available Controllers
PressGang ships with controllers for all the common WordPress template types:
PageController
page.twig
Standard WordPress pages
PostController
single.twig
Single post views (auto-detects post type)
PostsController
archive.twig
Archive listings, categories, search results
SearchController
search.twig
Search results (extends PostsController)
AuthorController
author.twig
Author archive pages
TaxonomyController
varies
Taxonomy archive pages
CommentsController
comments.twig
Comments template
NotFoundController
404.twig
404 error page
WooCommerce controllers are also provided under PressGang\Controllers\WooCommerce\.
Example: PageController
PageControllerUsage in Templates
Controllers are utilized in standard WordPress template files. PressGang maintains the familiar WordPress template hierarchy — you still create page.php, single.php, archive.php, etc. — but instead of writing queries and HTML, you delegate to a controller.
The static render() method resolves the controller and template for you:
You can also let PressGang infer the controller automatically from the template filename:
For more control, instantiate the controller directly:
Filters and Actions
The render() method fires several hooks, giving you fine-grained control over any controller's output:
pressgang_{controller}_template— filter the Twig template path before rendering.pressgang_{controller}_context— filter the context array before it reaches Twig.pressgang_render_{controller}— action fired just beforeTimber::render().
The {controller} placeholder is the snake_case version of the controller class name, e.g., pressgang_page_controller_template.
Extending Controllers in Child Themes
To extend the functionality of a parent theme controller in a child theme, create a new controller class in the child theme that inherits from the parent controller.
Then use it in your child theme's template:
This setup allows the child theme to inherit and extend the logic defined in the parent theme controllers, promoting code reuse and maintainability.
Note on MVC Abstraction
While these controllers are named similarly to traditional MVC Controllers, they function more closely as View Models.
In classic MVC:
Model: Handles data and business logic.
View: Manages the display of information.
Controller: Acts as an intermediary, handling user input, updating the Model, and refreshing the View.
In PressGang, the Controllers primarily prepare and manage context data for the View (Twig templates), aligning more with the View Model pattern. They focus on preparing data for the View without directly handling user input or business logic.
Controllers must not perform writes, remote requests, or access request globals like $_GET or $_POST.
Last updated