An Upstatement-flavored starter theme for WordPress
Skela utilizes repositories, managers, services, and models for an object-oriented approach to organizing your WordPress data.
Note that this repository is just for your WordPress theme. The WordPress installation should live elsewhere.
- π Skela
- Full Timber integration
- Built-in support for Ups Dock, so you can get a full WordPress site up a running with a few commands
- Easy documentation creation with Flatdoc
- Code bundling with Webpack, including:
- Some really great WordPress plugins (and plugin management provided by Composer)
- Some useful PHP libraries
- Linting and testing
- CI setup with GitHub Actions
Before you can start on your theme, you first need a way to run a LAMP/LEMP (Linux, Apache/nginx, MySQL, PHP) stack on your machine.
We recommend our very own Docker setup called Ups Dock. To install it follow these steps:
-
Install Docker for Mac
-
Install Ups Dock by following the installation steps in the README
-
Run
nvm install
to ensure you're using the correct version of Node. -
If you're not using Ups Dock, you can stop here! Otherwise...
-
Duplicate the contents of
.env.sample
into a new.env
file
-
If you're installing this repository to contribute to Skela, all you need to do next is run the install command
./bin/install
-
Once the install script succeeds, fire up your site with the start command
./bin/start
Now you should be able to access your WordPress site on
ups.dock
!The default credentials for WP admin are
admin
/password
(configurable viadocker-compose.yml
)
If you're using Skela as a template for another project, there's a few more steps to go through in order to set up the project to use your desired theme name.
-
In
package.json
andcomposer.json
, update repository and author information -
Run the rename theme command and follow the prompt, which will set up the project with your desired theme name
./bin/rename-theme
-
Run the install command
./bin/install
-
Once the installation script has finished, run the start command
./bin/start
Now you should be able to access your WordPress site on
ups.dock
!The default credentials for WP admin are
admin
/password
(configurable viadocker-compose.yml
)
If you would like to use the Advanced Custom Fields (ACF) and WP Migrate DB Pro plugins, follow these steps:
-
Purchase license keys from ACF and WP Migrate DB Pro
-
In
composer.json
add the following to the"repositories"
array{ "type": "package", "package": { "name": "advanced-custom-fields/advanced-custom-fields-pro", "version": "5.8.7", "type": "wordpress-plugin", "dist": { "type": "zip", "url": "https://connect.advancedcustomfields.com/index.php?a=download&p=pro&k=ACF_KEY&t=5.8.7" } } }, { "type": "package", "package": { "name": "deliciousbrains/wp-migrate-db-pro", "type": "wordpress-plugin", "version": "1.9.10", "dist": { "type": "zip", "url": "https://deliciousbrains.com/dl/wp-migrate-db-pro-latest.zip?licence_key=WP_MIGRATE_KEY&site_url=SITE_URL?v=1.9.10" } } }, { "type": "package", "package": { "name": "deliciousbrains/wp-migrate-db-pro-cli", "type": "wordpress-plugin", "version": "1.3.5", "dist": { "type": "zip", "url": "https://deliciousbrains.com/dl/wp-migrate-db-pro-cli-1.3.5.zip?licence_key=WP_MIGRATE_KEY&site_url=SITE_URL" } } }, { "type": "package", "package": { "name": "deliciousbrains/wp-migrate-db-pro-media-files", "type": "wordpress-plugin", "version": "1.4.15", "dist": { "type": "zip", "url": "https://deliciousbrains.com/dl/wp-migrate-db-pro-media-files-latest.zip?licence_key=WP_MIGRATE_KEY&site_url=SITE_URL?v=1.4.15" } } }
-
Search and replace
ACF_KEY
andWP_MIGRATE_KEY
with their respective license keys -
Search and replace
SITE_URL
with your site's URL (i.e.skela.ups.dock
) -
In
composer.json
add the following to the"require"
object"advanced-custom-fields/advanced-custom-fields-pro": "5.8.7", "deliciousbrains/wp-migrate-db-pro": "1.9.10", "deliciousbrains/wp-migrate-db-pro-cli": "1.3.5", "deliciousbrains/wp-migrate-db-pro-media-files": "1.4.15",
-
While the container is up, run
./bin/composer install
-
Run
nvm use
to ensure you're using the correct version of Node -
Run the start command to start the container and webpack server
./bin/start
Not using Ups Dock? Run
npm run watch
instead -
Visit the localhost URL in your browser
By default this is https://localhost:3000/, which proxies your project's Ups Dock URL (i.e. https://skela.ups.dock)
-
Access the WP Admin Dashboard at
/wp-admin
(i.e. https://skela.ups.dock/wp-admin)
To shut down the container and development server, type Ctrl+C
If you've installed this theme using Ups Dock, you can run wp-cli
by typing ./bin/wp [command]
.
Start the Docker containers with ./bin/start
and then run any of the following commands in a separate shell:
./bin/wp [command]
To export the database, use the following command:
./bin/wp db export - > docker/conf/mysql/init.sql
To export the database and gzip it, use the following command:
./bin/wp db export - | gzip -3 > docker/conf/mysql/init.sql.gz
To SSH into the WordPress container, use the following command:
docker-compose exec wordpress /bin/bash
This theme utilizes repositories, managers, services and models for a very object-oriented approach to organizing your WordPress data.
Managers do things like:
- set up your theme (register option pages, hide dashboard widgets, enqueue JS and CSS, etc.)
- create custom post types and taxonomies
- set up basic WordPress defaults
Models hold and extend your data.
Have a press release post type that needs a bunch of extra functions? Create a class for them (extending Timber\Post
) and put your logic there so you can keep your Twig clean!
Repositories are a good place to put query related logic.
It could be used in situations like the following:
Let get me all the posts from September in the hot dog category!
Services are for more low-lying functions, like routing.
This theme has built-in support for easily creating custom Gutenberg blocks with the help of Advanced Custom Fields. Note that the pro version of ACF is required for this.
There is an example custom block under src/Blocks/SampleACFBlock/ACFBlock.php
. This demonstrates creating a block using ACF functions that includes two fields. Those fields are rendered in the file templates/components/acf-block.twig
.
Note that in order to get this example to work, you need to create a ACF field group containing two fields, some_headline
and some_text
, and then have the field group displayed if the block is equal to ACF block.
Read more details on creating Gutenberg blocks using ACF
-
Create a new ACF block class file in
/src/Blocks
.There is an example custom block under
src/Blocks/SampleACFBlock/ACFBlock.php
. This demonstrates creating a block using ACF functions that includes two fields.Note that in order to get this example to work, you need to create an ACF field group containing two fields,
some_headline
andsome_text
, and then have the field group displayed if the block is equal to ACF Block. Be sure to keep your block name all lowercase. ACF drops all uppercase letters and your block might not appear as an option if the names are mismatched. -
Create a new twig file to render the ACF fields.
The example block fields are rendered in the file
templates/components/acf-block.twig
. -
Invoke the ACF block class in
/src/Blocks/Blocks.php
. -
Add your new Gutenberg block to the array returned in the
allowBlocks
function in/src/Managers/GutenbergManager.php
.public function allowBlocks($allowed_blocks) { return array( ... 'acf/acf-block', ... ); }
Read more about creating Gutenberg blocks using ACF
Two custom Gutenberg blocks are included:
- Related Articles
- Image Layout
These include basic styles so they can work out of the box. They require the Advanced Custom Field plugin to function. If you do not plan to use ACF, you can disable these blocks by removing the applicable lines in the constructor function of /src/Blocks/Blocks.php
These fields are managed using PHP in the file /src/Managers/ACFManager.php
. You can make updates to the fields here. If you would rather using the ACF to make updates to these fields:
- Under
Advanced Custom Fields -> Tools
, import the JSON file in/gutenberg-acf-backups/
- Make updates to the fields
- Go to
Advanced Custom Fields -> Tools
and generate the PHP code - Update the PHP code in
/src/Managers/ACFManager.php
. Make sure to only update the PHP code for one layout group at a time, as they are separated by function in the manager file.
If you wish to enable WordPress Multsite, consult this guide.
We welcome all contributions to our projects! Filing bugs, feature requests, code changes, docs changes, or anything else you'd like to contribute are all more than welcome! More information about contributing can be found in the contributing guidelines.
Upstatement strives to provide a welcoming, inclusive environment for all users. To hold ourselves accountable to that mission, we have a strictly-enforced code of conduct.
Upstatement is a digital transformation studio headquartered in Boston, MA that imagines and builds exceptional digital experiences. Make sure to check out our services, work, and open positions!