This is a Salient child theme, with:
- Laravel Mix - for frontend asset tooling
- Visual Composer block examples
- Custom Widget boilerplate
- Lots of developer friendly, handy tooling such as PHPCS, eslint, editorconfig and more
For code consistency, please ensure you have the following installed in your environment/IDE:
editor config
(for.editorconfig
) to share editor config for the projecteslint
for JS linting (how to →)PHPCS
for PHP linting (how to →)yarn
to compile frontend assets
# 1. Purchase and install the Parent theme (Salient) into themes
https://themeforest.net/item/salient-responsive-multipurpose-theme/4363266
# 2. Clone this theme repo into your Wordpress Themes directory
git clone git@bitbucket.org:pvtl/wordpress-salient-boilerplate-v3.git web/app/themes/salient-child
# 3. Install and compile front-end dependencies with yarn
( cd web/app/themes/salient-child && yarn )
Command | Description |
---|---|
phpcs |
Lint your PHP Files (Run locally, not in Docker) |
yarn development |
Compiles/copies assets to /dist |
yarn watch |
Watches your directory and compiles/copies assets to /dist each time you press save on a SCSS or JS file. Uses LiveReload to automatically inject assets into any open browser. Note that it polls a live reload server on port 3000. |
yarn production or yarn prod |
Compiles/minifies/copies assets to /dist ready for production |
yarn lint-js |
Provides a report on your JS, against the code styleguide |
Directory | Description |
---|---|
/assets |
Frontend assets (scss, js, images) working files |
/dist |
Compiled frontend asset code (that you should not touch - but should be committed to the repo) |
/email_templates |
As the name suggests, email templates |
/library |
Libraries and functions that are registered on theme boot and 'globally' accessible |
/vc-elements |
Custom Page Builder element examples. These are auto-loaded by functions.php |
/widgets |
Wordpress widgets |