underscores-gen
v1.0.5
Published
Generator based on Underscores Theme for Wordpress
Downloads
13
Maintainers
Readme
Generator based on _s theme
Hi. Want to develop a WordPress theme and are looking for a good starter theme? That's what I'm here for. I'm a generator for the starter theme called _s
, or underscores
, if you like.
Installation
Requirements
_s
requires the following dependencies:
Quick Start
1 - Generate
Open the Terminal inside the WordPress themes
directory and run the folowing commands:
$ cd /path/to/wp-content/themes
$ npx underscores-gen
You will be prompted to enter the theme name, slug and path.
2 - Setup
To start using all the tools that come with _s
you need to install the necessary Node.js and Composer dependencies:
$ cd theme-dir
$ composer install
$ npm install
Available CLI commands
_s
comes packed with CLI commands tailored for WordPress theme development :
composer lint:wpcs
: checks all PHP files against PHP Coding Standards.composer lint:php
: checks all PHP files for syntax errors.composer make-pot
: generates a .pot file in thelanguages/
directory.npm run compile:css
: compiles SASS files to css.npm run compile:rtl
: generates an RTL stylesheet.npm run watch
: watches all SASS files and recompiles them to css when they change.npm run lint:scss
: checks all SASS files against CSS Coding Standards.npm run lint:js
: checks all JavaScript files against JavaScript Coding Standards.npm run bundle
: generates a .zip archive for distribution, excluding development and system files.
Setup Visual Studio Code
- Open Visual Studio Code.
- Press
Ctrl+P
on Windows orCmd+P
on Mac to open the Quick Open dialog. - Type
ext install phpsab
to find the extension. - Press Enter or click the cloud icon to install it.
- Restart Visual Studio Code!
Now you're ready to go! The next step is easy to say, but harder to do: make an awesome WordPress theme. :)