A progressive theme development rig for WordPress, WP Rig is built to promote the latest best practices for progressive web content and optimization. Building a theme from WP Rig means adopting this approach and the core principles it is built on:
- Accessibility
- Lazy-loading of images
- Mobile-first
- Progressive enhancement
- Resilient Web Design
- Progressive Web App enabled
- AMP-ready
WP Rig has been tested on Linux, Mac, and Windows.
WP Rig requires the following dependencies. Full installation instructions are provided at their respective websites.
- Clone or download this repository to the themes folder of a WordPress site on your development environment.
- Configure theme settings including the theme slug and name in
./dev/config/themeConfig.js
. - In command line, run
npm install
to install necessary node and Composer dependencies. - In command line, run
npm run build
to generate the theme. - In WordPress admin, activate the theme.
To take full advantage of the features in WP Rig, your code editor needs support for the following features:
WP Rig can be used in any development environment. It does not require any specific platform or server setup. It also does not have an opinion about what local or virtual server solution the developer uses.
WP Rig uses BrowserSync to enable synchronized browser testing. To take advantage of this feature, configure the proxy
wrapper settings in ./dev/config/themeConfig.js
to match your local development environment. The URL
value is the URL to the live version of your local site.
WP Rig uses a Gulp 4 build process to generate and optimize the code for the theme. All development is done in the /dev
folder and Gulp preprocesses, transpiles, and compiles the files into the root folder. The root folder files become the active theme. WordPress ignores anything in the /dev
folder.
Note: If you have previously used Gulp, you may encounter seemingly random errors that prevent the build process from running. To fix this issue, upgrade to Gulp 4 following the steps outlined here.
JavaScript files are automatically linted using ESLint in accordance with WordPress Coding Standards.
PHP and CSS files are automatically linted using PHP CodeSniffer in accordance with WordPress Coding Standards. To take full advantage of this setup, configure your code editor / IDE to automatically test for the WordPress Coding Standards. More details can be found at the WordPress Coding Standards Wiki. composer run-phpcs
runs PHPCS locally.
npm run build
is the regular development process. While this process is running, files in the ./dev/
folder will be automatically compiled to the live theme and BrowserSync will update if it is enabled.
npm run translate
generates a .pot
file for the theme to enable translation. The translation file will be stored in ./languages/
.
npm run bundle
generates a [themename].zip
archive containing the finished theme. This runs all relevant tasks in series ending with the translation task and the bundle task and stores a new zip archive in the root theme folder.
To bundle the theme without creating a zip archive, change the export:compress
setting in ./dev/config/themeConfig.js
:
export: {
compress: false
}
WP Rig gives the developer an out of the box environment with support for modern technologies including ES2015, CSS grid, CSS custom properties (variables), and existing tools like Sass without making any configurations. Just write code and WP Rig handles the heavy lifting for you.
Configuring the behavior of WP Rig is done by editing ./dev/config/themeConfig.js
. Here the developer can set the theme name and theme author name (for translation files), the browser list for AutoPrefixer, and local server settings for BrowserSync. Additionally, compression of JavaScript and CSS files can be turned off for debugging purposes.
WP Rig lazy loads all images out of the box to improve performance. When lazy-loading images is enabled in the theme, the user will see a Theme Options feature in Customizer allowing them to toggle the feature off.
To disable this feature in the theme, comment out or remove the following line from ./dev/functions.php
:
require get_template_directory() . '/pluggable/lazyload/lazyload.php';
The theme generated by WP Rig is AMP-ready meaning it works hand-in-hand with the official AMP plugin and does not require further configuration to work with AMP features. The AMP plugin allows you to opt-in to amp
theme support via the plugin settings page but you can also force enable AMP support in a theme by adding add_theme_support( 'amp' );
in ./dev/functions.php
.
When AMP support is enabled, JavaScript and other features are automatically disabled if the site admin has enabled the official AMP plugin. Developers can selectively enable/disable features within the theme using the wprig_is_amp()
conditional. For more see Implementing Interactivity.
WP Rig takes a component-based approach to WordPress themes. Out of the box, the compiled theme uses index.php
as the core template file for all views (index, archives, single posts, pages, etc). The /optional
folder holds optional template files that can be accessed via the WordPress Template Hierarchy. To activate these files, move or copy them into the root /dev
folder. The /optional
folder is ignored by the Gulp build process.
The separation of Pluggable and External features into their own folders allows the theme developer to swap out any feature for an external feature (AMP components) or non-php feature (JavaScript framework etc) without interfering with the core theme functions.
Pluggable functions and features (eg custom header, sliders, other interactive components) are separated into the /pluggable
folder for easy access. When custom stylesheets and/or JavaScript files are needed, the pluggable component and its dependent files should be placed in a sub-folder to retain separation of concerns.
External features and add-ons are separated into the /external
folder and are managed the same way as Pluggable functions.
Images and graphics are placed in the /images
folder and are optimized automatically.
Global JavaScript files are placed in the /js
folder and linted and optimized automatically. External JavaScript libraries are placed in the /js/libs
folder. These files are not linted or optimized by the Gulp process.
Global stylesheets and stylesheets related to root-level php files are placed in the /css
folder and are optimized automatically.
Content loop files are placed in the /template-parts
folder.
style.css
is loaded in <head>
through a wp_enqueue_style()
call in functions.php
. It is the main stylesheet and serves up global styles and layouts only.
To further componentize the theme, WP Rig employs progressive loading of CSS through in-body <link>
tags. Component-specific styles are held in component-specific stylesheets and loaded at component level. The wprig_add_body_style()
in ./dev/inc/template-functions.php
can be used to conditionally preload in-body stylesheets for improved performance.
This approach has several advantages:
- The main stylesheet file size is reduced
- Styles are only loaded if and when a component is present in the view.
- Stylesheets are associated with their components making them easier to work with.
- Leverages HTTP/2 multiplexing and can be extended to include server push etc.
- Component-level stylesheets are cached and can be individually updated without forcing reload of all styles on the site.
To improve the performance of the theme, progressively loaded stylesheets can be conditionally preloaded. This is done using the wprig_add_body_style()
function in ./dev/inc/template-functions.php
. When preloading a stylesheet, use the console in Chrome developer tools to ensure no unnecessary stylesheets are loaded. A warning will appear letting you know if a stylesheet is preloaded but not used.
All CSS is processed through PostCSS and leveraging postcss-preset-env to allow the use of modern and future CSS markup like custom properties (variables). Variables are defined in ./dev/config/cssVariables
and applied to all CSS files as they are processed.
postcss-preset-env (previously cssnext) passes all CSS through Autoprefixer to ensure backward compatibility. Target browsers are configured under browserlist
in ./dev/config/cssVariables
.
The theme generated by WP Rig is mobile-first and accessible. It uses the modern layout modules CSS grid and flex to support a minimalist HTML structure.
For backward compatibility with browsers who do not support modern layout modules, WP Rig provides the mobile-first layout across all screen widths and serves two-dimensional layouts as a progressive enhancement.
The CSS philosophy of WP Rig breaks down as follows:
- Mobile layout for all screen sizes as fallback.
- Two-dimensional layouts using CSS grid.
- One dimensional block/list-based displays using flex.
- In-content wrapping using float and clear.
WP Rig is released under GNU General Public License v3.0.
- Updated theme support for Gutenberg color palette with a single array attribute. Props @webmandesign
./verbose/
folder no longer holds PHP files. Resolves duplicate functionality as described in #51.- Update Composer dependencies to latest versions (and to remove update nag).
- Use slug for naming language file and ZIP bundle. Props Props @felixarntz.
- PHP process updated to run conditionally on theme name and theme slug rename and on first run. Props @hellofromtonya.
- Introduce guard clause to simplify wprig_is_amp() condition around wprig_scripts(). Props @Tabrisrp.
- Remove extraneous variable $post_count from index.php. Props @Soean.
- cssnext replaced with postcss-preset-env. No change in functionality. Props @mor10
- Separate theme name and theme slug in
themeConfig.js
. Props @felixarntz.