WP Base
A theming process using Bones.
Base theme
- bones
- bones/library/scss
- style.scss
- import _normalize.scss - a reset
- import _mixins.scss, colours, typography, basic buttons+alerts
- import _base.scss - optimized for 320px to 480px
- media query, min-width: 481px - _481up.scss - larger mobile devices
- media query,min-width: 768px - _768up.scss - tablet and basic desktop
- media query, -webkit-min-device-pixel-ratio: 1.5, min--moz-device-pixel-ratio: 1.5, min-device-pixel-ratio: 1.5 - _2x.scss
- basic print style
- webfont goes in library/fonts
- Create new Git branch of theme
@include rounded(4px); @include border-radius(4px,4px,0,0); @include transition(all,2s,ease-out); @include box-shadow(5px, 5px, 10px, #000); @include css-gradient(#dfdfdf,#f8f8f8); @include box-sizing(border-box);
Grid
@import 'grid'; defaults to 12 column, 960 grid system. Customize by overriding three variables (after the import has been declared): @column-width: 60; @gutter-width: 20; @columns: 12; @total-width: 100%; for fluid (percentage-based) grid rather than a fixed pixels
wget https://raw.github.com/twigkit/semantic.gs/master/stylesheets/scss/grid.scss grid.scss / -O _grid.scss
Preprocess
- https://github.com/sanchothefat/wp-sass - uses richthegeek/phpsass
git clone git://github.com/sanchothefat/wp-sass.git wp-content/plugins/wp-sass git submodule update --init --recursive
Install script
Is a WIP
See https://gist.github.com/gists/3157720
mkdir wp-content/themes/bones && cd $_ && wget https://github.com/eddiemachado/bones/zipball/master && unzip master && mv eddie*/* eddie*/.. && rm -rf eddie* && rm master
or
git archive --remote=git://github.com/eddiemachado/bones.git master | tar -xf -
the git one doesn't work, to check.
Post-install
To work into install script
- Theme
- Make sure preprocess and grid is available
- Change name, etc, in style.css
- Activate
- Settings
- Blog / network
- General: title, tagline,
- Permalink? - default nginx blog/2012/08/14/sample-post/, to check if required
- Set preprocess things in
- _mixins.scss - colours, fonts
- Webfont via Font Squirrel
- Remove sample post, page, links
- Import from production or other materials
- Change site title and tagline
Prelaunch
- Signup, comment, avatar, trackback settings
(Plugins)
to sort
- wordpress-importer - for testing theme
- http://wordpress.org/extend/plugins/rewrite-rules-inspector/
- http://wordpress.org/extend/plugins/backwpup/
- http://wordpress.org/extend/plugins/google-analytics-for-wordpress/
- http://wordpress.org/extend/plugins/google-sitemap-generator/
- http://wordpress.org/extend/plugins/w3-total-cache/
- http://wordpress.org/extend/plugins/all-in-one-seo-pack/