Wordpress Starter
This Compass extension provides support for creating WordPress Themes using Sass.
[sudo] gem install wordpress-starter
To install a theme into your existing compass project, add the following to your compass configuration file:
require 'wordpress-starter'
Or, just run this command:
compass -r wordpress-starter -f wordpress -s compressed /path/to/installation
What this does is call compass, requires the wordpress-starter extension, uses the framework wordpress, sets the Sass output to be compressed and finally ends with you setting the theme name.
There are some available patterns:
compass -r wordpress-starter -f wordpress /path/to/installation
this theme comes bundled with a few features that makes easier to start:
compass -r wordpress-starter -f wordpress/foundation /path/to/installation
this theme comes bundled with a few features that makes easier to start:
this theme comes bundled with a few features that makes easier to start:
compass -r wordpress-starter -f wordpress/starter /path/to/installation
All the code included tries to follow the WordPress coding standards
git checkout -b my-new-feature)git commit -am 'Add some feature')git push origin my-new-feature)