Installation
Last updated
Last updated
PHP >=7.1
Currently, using a child-theme to extend a Lumberjack theme is unsupported.
This is the recommended way to create a new site and assumes you want to build on top of . If you're new to using WordPress with Composer this is the simplest (and quickest) way to get up and running as the installer will do all the heavy lifting for you.
Download the Lumberjack Bedrock Installer with Composer (you only need to do this the first time):
Make sure that Composer's global vendor
bin directory is in your $PATH
so that the installer can be used.
Once the installer is available on your computer you can create a new Lumberjack/Bedrock site using:
This will create a new folder my-site
in the current working directory, install the latest version of Bedrock, add the lumberjack-core
dependency and download the most recent Lumberjack starter theme.
To complete the install do the following:
Edit the .env
file and update environment variables:
DB_NAME
- Database name
DB_USER
- Database user
DB_PASSWORD
- Database password
DB_HOST
- Database host
WP_ENV
- Set to environment (development
, staging
, production
)
Set your site vhost document root to /path/to/my-site/web/
Access WP admin at http://example.com/admin
and activate the Lumberjack theme.
If you don't plan to use Bedrock and have another Composer based setup for WordPress, you can do the following:
Now add the Lumberjack Core dependency via Composer:
If your setup doesn't include your Composer vendor/autoload.php
file outside of the theme, you'll need to add the following to the top of the themes functions.php
:
Lumberjack can be added to an existing theme as long as Composer is being used as part of your setup. You're able to use as little or as much as you need and the framework will play nicely alongside more traditional WordPress code.
Add the Lumberjack Core dependency via Composer:
app
bootstrap
config
views
Create an empty routes.php
file at the root of your theme directory.
Add the following to the top of your functions.php
file:
If your setup doesn't include your Composer vendor/autoload.php
file outside of the theme, you'll need to also add the following to the top of the themes functions.php
:
WP_HOME
- Full URL to WordPress home (e.g. )
WP_SITEURL
- Full URL to WordPress including subdirectory (e.g. )
AUTH_KEY
, SECURE_AUTH_KEY
, LOGGED_IN_KEY
, NONCE_KEY
, AUTH_SALT
, SECURE_AUTH_SALT
, LOGGED_IN_SALT
, NONCE_SALT
- Generate with or from the
For more information on additional installer options, please see the package on GitHub.
Download the and add it to your WordPress theme directory.
Copy the following directories from the into your theme: