Skip to content

markandcurry/wordpress-theme

 
 

Repository files navigation

WDG Starter WordPress Theme

This is a very opinionated base theme for WordPress, build from several iterations of our themes on production.

It comes with Bower and Grunt support by default, it was heavily inspired in YeoPress' default theme configuration file.

Directory structure

All static assets, like stylesheets, JavaScript files and images should go in the /assets directory. All 3rd party frameworks and plugins should go in the /assets/vendor directory - we recommend using Bower for installing and updating them.

SASS is encouraged in development, use Grunt to build CSS files. Use components, mixins and variables folders to build modular CSS.

All PHP scripts that aren't templates should go in /includes. Eg. /includes/wdg.class.php

Translation files should live in the /languages directory.

node_modules is where all Node.js packaged modules will be stored to be used in the Build process with Grunt. This directory is excluded from the Git repo by default. We'd recommend to keep it this way. The contents of this directory are ignored on Git by default.

partials is where all the template parts live.

templates is where all user-selectable page templates live. E.g. "/* Template Name: XXX */"

tests include unit testing for our main PHP scripts (and possibly Front-End tests?). We encourage you to write all sort of tests for your theme here, feel free to use your favorite testing framework.

widgets is where all WordPress widgets code is available. Each PHP file in this directory will be included on widget_init.

wdg-wordpress-theme
├─┬ assets
│ ├── css
│ ├── fonts
│ ├── img
│ ├── js
│ ├── sass
│ └── vendor
├── includes
├── languages
├── node_modules
├── partials
├── templates
├── tests
└── widgets

Vendor assets with Bower

3rd party vendor files live in /assets/vendor, they can be either stylesheets, JavaScript, images or any kind of helper, snippet, library or framework that isn't theme related. Eg. Modernizr, jQuery, Normalize.css, Font Awesome.

We encourage the use of Bower a package and dependencies manager for front-end assets.

In case the script you are looking for isn't available through Bower, feel free to download it and copy it in the vendor directory - preferably in its own directory.

Default assets

We install the following components by default:

Searching for a package

Bower packages repository

Installing a package

Use the command line to get to root of the repo and run the following command to download and copy the assets to /assets/vendor and save its name and version on the /bower.json file.

$ bower install --save modernizr

Uninstalling a package

The following command will remove the files from /assets/vendor

$ bower uninstall modernizr

Build process with Grunt

Installing

Use the command line to get to the root of the repo and run the following command to install node modules, including Grunt.

$ npm install

Default task: build, watch

This is the default task, it does a full build then constantly looks for file changes in the directory theme. Once found, it will apply the specific build task based on it's file type. There is a LiveReload support, so your browser tab should be updated automatically after compilation as long as you have the browser extension enabled.

$ grunt watch

Most of the time you will want to run the default task by simply using the command grunt in your root directory.

$ grunt

Build

This set of tasks will be executed based on the file type in the following order:

  1. Compiles any CSS Pre-processors and exports it to /assets/css
  2. Scans all CSS files and adds Browser vendor prefixes with Autoprefixer grunt-autoprefixer
  3. Lints all JavaScript files with JSHint grunt-contrib-jshint
  4. Scans all compiled CSS and JavaScript files for references of Modernizr's CSS class names or JavaScript methods to create a custom minified version of Modernizr with grunt-modernizr. Eg. .backgroundsize {}, Modernizr.backgroundSize or Modernizr.prefixed('backgroundSize')
$ grunt build

Tests

Unit testing for PHP and JavaScript in the theme

$ grunt tests

Using CSS pre-processors

We encourage all developers to use CSS pre-processors and we specially like SASS, but use whatever you feel more comfortable with. Just make sure you follow our 3 simple rules.

  1. Create a directory on /assets where all your files will live. Eg. /assets/sass.
  2. Create a task to use it on Grunt and hook up in the build task.
  3. Hook up on the watch task for Grunt.
  4. Avoid using mixins for vendor prefixes, we are already running autoprefixer on Grunt.

WordPress Plugins

We encourage you to use the following plugins for development:

Development

Administration

Debugging

  • Debug Bar for a debugging environment
  • Debugger to be used along side Debug Bar for custom debugging messages
  • Log Viewer for log management

WordPress CLI

We encourage you to use WordPress CLI as much as possible in your workflow, it's an incredible tool which provides an enormous amount of power. Also look at all the community packages.

Contribution

Although we are very opinionated, we are open to suggestions. Please send as a message to our email [email protected], through our contact page, send us a GitHub issue or even better, a pull request!

Credits

Brought to you by The Web Development Group team.

  • Original directory structure was inspired by Bones.
  • Code snippets from Underscores.
  • Grunt configuration originally inspired by YeoPress.
  • If we forgot someone, please send us a pull request or a message through the issues.

About

Minimal Bones WordPress Theme

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • PHP 92.4%
  • JavaScript 7.2%
  • CSS 0.4%