There are some advantages and disadvantages of combining Laravel and WordPress. I am not going to dig deep into it but in case you’re looking for steps to combine both, where they are.
Step 1
Make sure you have these dependencies installed on your local or web server.
- PHP >= 7.1.3 (with php-mbstring enabled)
- Composer
- Node.js >= 8.0.0
- Yarn
Step 2
Install or download a copy of a WordPress version 4.7 or higher.
Step 3
Go to your WordPress themes directory using this command (Assuming you are at the root level of your WordPress installation):
cd wp-content/themes/
Install the Sage theme using the following command.
composer create-project roots/sage
You will see different options to define theme meta information such as theme name, theme URI, theme description, theme version and theme author.
At the end, it will ask for and choose a CSS framework from Bootstrap, Bulma, Foundation, Tachyons and Tailwind. You can also just start from a blank slate and not select any of those CSS frameworks.
Step 4
Add dependencies using yarn.
Go to your Sage theme directory using this command (Assuming you are at the root level of your WordPress installation):
cd wp-content/themes/sage
Run this command:
yarn
After that, you’ll have all the required dependencies to build the project after a change.
You can also change Browsersync configuration, Server configuration and configure Stylesheets and scripts.
Step 6
Make changes to your project assets and compile them to see the changes.
Use this command to compile and optimize the files in your assets directory:
yarn build
Use this command to compile and optimize the files in your assets directory for production:
yarn build:production
Use this command to compile assets when file changes are made, start Browersync session:
yarn build:production
yarn start
Step 7 : Optional
Use this remedy if you see this error:
Solution (Run the following commands one by one):
npm uninstall postcss-loader --save-dev
npm install postcss-loader@~3.0.0 --save-dev
yarn
That should do it. Your project should be up and running.
There are tons of additional changes you can make using the Sage documentation.
bootstrap bulma foundation framework install Laravel Sage tachyons Tailwind theme