WP themes

From Things and Stuff Wiki
Jump to navigation Jump to search
The printable version is no longer supported and may have rendering errors. Please update your browser bookmarks and please use the default browser print function instead.


Repositories

Requirements

  1. HTML5 ready. Many use HTML5 Boilerplate (or 'h5bp')
  2. Responsive, with a mobile first approach, like 320 And Up.
  3. Preproces system, to help with layout (Sass/SCSS, not too hard to add though)
  4. Grid system, to help with layout (not too hard to add though)
  5. Accessibility (basic WCAG 2.0? can be implemented later)
  6. Theme settings for easy change of, say, header (Settings API, etc.)
  • Make sure mobile devices don't get desktop size CSS or content
  • LESS and possibly limited SCSS/Compass in PHP (all shared), full SCSS/etc. with Ruby (easier on VPS)
  • Semantic CSS with grid and vertical rhythm systems

Interesting

Bones

320semanticgs

_s

Pears

Hmm

article;

Bootstrap

Search for: '_tk' and replace with: 'megatherium'
Search for: _tk_ and replace with: megatherium_
Search for:  _tk and replace with:  Megatherium
Search for: _tk- and replace with: megatherium-
find . -type f -print0 | xargs -0 perl -pi -e "s/\'_tk'/\'euroelec'/g;"
find . -type f -print0 | xargs -0 perl -pi -e "s/_tk_/euroelec_/g;"
find . -type f -print0 | xargs -0 perl -pi -e "s/ _tk/ Euroelec/g;"
find . -type f -print0 | xargs -0 perl -pi -e "s/_tk-/euroelec-/g;"

Other

  • Glider is a one-template-file Wordpress theme that uses jQuery's .load() function to ping Wordpress for single posts, then inline-loads the post in question - this results in the ability to read all the posts without any (apparent) page loads. The theme now also supports arrow-key navigation.

Build