This post contains the slides for and links to all the things you need to follow my WP Rig workshop at WP Campus 2019, including a couple of verbose code examples for complex walk-throughs.
WP Rig itself:
VS Code extensions
Referenced documentation
Throughout the workshop I’ll mention a proverbial ton of fancy new technologies, best-practices, and other cool stuff. The list below comprises the most salient parts for your perusement:
CSS
- CSS in WP Rig
- CSS flex layout aka “flexbox”
- CSS grid layout
- CSS custom properties, aka CSS variables
- The Future of Loading CSS by Jake Archibald (2016)
PHP
- PHP architecture in WP Rig
- A Complete Guide to PHP Namespaces by David Hayes
- WordPress Template Hierarchy
JavaScript
Code examples
VS Code settings
{
"prettier.stylelintIntegration": true,
"prettier.eslintIntegration": true,
"editor.formatOnSave": true,
"editor.renderWhitespace": "boundary"
}