https://github.com/horttcore/wordpress-theme-boilerplate
A WordPress Boilerplate Theme
https://github.com/horttcore/wordpress-theme-boilerplate
boilerplate boilerplate-template theme wordpress
Last synced: 5 months ago
JSON representation
A WordPress Boilerplate Theme
- Host: GitHub
- URL: https://github.com/horttcore/wordpress-theme-boilerplate
- Owner: Horttcore
- Created: 2016-05-09T13:37:04.000Z (almost 9 years ago)
- Default Branch: master
- Last Pushed: 2022-10-02T22:33:09.000Z (over 2 years ago)
- Last Synced: 2024-06-12T19:10:07.998Z (11 months ago)
- Topics: boilerplate, boilerplate-template, theme, wordpress
- Language: PHP
- Homepage: https://horttcore.de
- Size: 3.87 MB
- Stars: 3
- Watchers: 2
- Forks: 5
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
Awesome Lists containing this project
README
# Aurora Theme
## Documentation
Every folder contains a `README.md` with further instructions
## Installation
`$ composer create-project ralfhortt/wordpress-theme-boilerplate`
Check `INSTALLATION.md` for detailed installation steps## Build Process
### Fonts
- Set Google fonts url in `fonts.list` file
- Run `npm run fonts` or `yarn fonts` for downloading google fonts### Production
- Run `npm run production` or `yarn production` for production build
### Development
- Run `npm run dev` or `yarn dev` on development systems
#### Linters
Run `npm run lint` or `yarn lint` linting files
- [phpcs](https://github.com/squizlabs/PHP_CodeSniffer) ([VScode](https://marketplace.visualstudio.com/items?itemName=ikappas.phpcs))
- [phpmd](https://phpmd.org/) ([VScode](https://marketplace.visualstudio.com/items?itemName=ecodes.vscode-phpmd))
- [eslint](https://eslint.org/) ([VScode](https://marketplace.visualstudio.com/items?itemName=dbaeumer.vscode-eslint))
- [stylelint](https://stylelint.io/) ([VScode](https://marketplace.visualstudio.com/items?itemName=shinnn.stylelint))#### Fixers
Run `npm run fix` or `yarn fix` for auto fixing
- [eslint](https://eslint.org/)
- [stylelint](https://stylelint.io/)
- [phpcbf](https://github.com/squizlabs/PHP_CodeSniffer/wiki/Fixing-Errors-Automatically)