Puddlejumper is a very basic barebones starting theme for Wordpress. It has as much of the cruft removed as possible.
It has a few simple libraries included in the functions folder that you can take advantage of. Most of them are being used by default.
One of the library modules included is JW Post Types by Jeffrey Way (http://jeffrey-way.com). Which allows for creating custom post types in just a few lines of code. I've included a wrapper class for it to extend functionality and streamline it a little bit.
- Features
- Brents's first steps after installing
- Using SCSS
- Modularly loading javscripts with modernizr
- Custom PHP Classes Documentation
- Closing
- Setup to use SASS. Sheets broken down into logical structures.
- Modularly loaded javascript with modernizr
- Simple semantic templates (each type individually stylable)
- Tons of useless code, classes, bizzaro semantics removed
- A few useful PHP classes thrown in to make some common things easy. Feel free not to use them either!
all of this is optional, the theme will work just fine without any of this, just my personal preference
- Settings > Enable Permalinks (replace blog with whatever you want to call it ex. news, updates etc)
- Set Custom Structure "/blog/%postname%/"
- Category Base: blog/category
- Tags Base: blog/tags
- Appearance > Theme
- Rename theme directory
- Edit your details into styles.css
- Edit screenshot.png
- Refresh
- Set the new theme
- Pages > New
- Make "Home"
- Set Home template
- Make "Blog"
- Set as Blog Template
- Ideally one other static page for templating (ex. About)
- Make "Home"
- Settings > General Settings
- Set each preference
- Settings > Reading
- Set Front Page to "Home"
- Set Post Page to "Blog"
- Show only Summary
- Appearance > Menus
- Make "Primary" Menu
- Add Blog Page and Home Page for now
- Make "Primary" Menu
- Plugins
- Trash Dolly Plugin
- Download Plugins (The following are pretty standard)
- Google XML Sitemaps: http://wordpress.org/extend/plugins/google-sitemap-generator/
- Contact Form 7: http://wordpress.org/extend/plugins/contact-form-7/
- Start Theming!
A quickover view on working with the included SCSS features. The best part is you don't have to use them. Just feel free to start writing in the css/styles.css file.
All of the included tags are already targeted in the SCSS files and ready to be themed.
This structure promotes a mobile first design pattern.
scss/ (hold all of the scss data, ignored by wordpress)
|
| _colors.scss (holds the master color codes for the theme)
|
| _fonts.scss (holds any @fontface or font data)
|
| _layout.scss (the basic layout of the site globally)
|
| _mixins.scss (common recurring items, like buttons can go here)
|
| _pages.scss (page specific styles, each body tag can be given it's own class)
|
| _plugins.scss (where all wordpress or other plugin css goes)
|
| _reset.scss (css reset)
|
| _responsive.scss (controls how the responsive settings for the site work)
|
| _typography.scss (holds the master typography data for the site)
|
| responsive/ (holds resposive variations)
| |
| | _480.scss (ex. layouts > 480px)
| |
| | _760.scss (ex. layouts > 760px)
| |
| | _980.scss (ex. layouts > 980px)
| |
| | _1200.scss (ex. layouts > 1200px)
| |
| | _1350.scss (ex. layouts > 1350px)
| |
| styles.scss (loads each of the above SCSS files in the correct order)
|
styles.css (the final compiled style sheet)
Everything in the scss directory compiles down to styles.css. styles.css is the file that will be read by wordpress.
I personally work on a mac. I recommend Scout which is cross platform, to compile SCSS. It's a free adobe air app and works great! You can also install SASS as a ruby gem and work on it from the commandline.
js/lib/modernizr.js
The head calls the modernizr file which loads in any listed files. You will have to change sitename.com to whatever the domain is.
Shown below is the lazy approach. You can easily use if/else statements and only include scripts on the pages that need them! Take that wordpress!
Coupled with the WPClean Class you can inlcude scripts yourself and compile plugin css with scss.
Once again if you don't want to use this just don't call modernizr in the includes/html-header.php file. Then include javascript in whatever fashion you like.
Modernizr.load([
/* Libraries */
'//ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js',
'//sitename.com/wp-content/themes/puddlejumper/js/lib/jquery.slicknav.js',
'//sitename.com/wp-content/themes/puddlejumper/js/lib/jquery.magnific-popup.js',
'//sitename.com/wp-content/themes/puddlejumper/js/lib/jquery.ga.js',
'//sitename.com/wp-content/themes/puddlejumper/js/lib/jquery.form.js',
'//sitename.com/wp-content/themes/puddlejumper/js/lib/contactform7.js',
/* Modules */
'//sitename.com/wp-content/themes/puddlejumper/js/scripts.js'
]);
This is some shoddy documentation for the libraries included in the functions directory. It'll get better.
$plugin_scripts_and_styles_to_remove = array(
'jquery',
'contact-form-7'
);
WPclean::init($plugin_scripts_and_styles_to_remove);
The Wordpress Clean class will take out all sorts of needless crap from the theme. Also includes a hook to remove scripts and styles from the wp-head so you can include them yourself in a civilized fashion (not 20 js/css requests). I've included Modernizr. It's require method works nicely and this is set up by default to use it. Again if you don't want to use it. Just delete it from the head and include scripts however you want to.
<?php Inc::templates( array( 'includes/html-header', 'includes/header' ), 'home' ); ?>
Include class. Let's you define an array of template files to include and pass a string to be the class on the page body. I believe this was taken out of the bones theme then extended to allow a string for body class.
$recipe = new PostType('recipe', array(
'supports' => array(
'title', 'editor', 'thumbnail', 'trackbacks', 'custom-fields', 'comments', 'revisions'
)
));
$recipe->add_meta_box('Recipe', array(
'Image' => 'file',
'Prep Time' => 'text',
'Cook Time' => 'text',
'Yield' => 'text',
'Ingredients' => 'textarea',
'Instructions' => 'textarea',
'Rating' => 'text'
));
Simple class to allow you to create custom post types from the above code. Only the first block is needed. The second adds custom meta boxes onto the post type. Add as many custom meta boxes as you like organized by label.
This has also been extended to allow you to rename the default posts type from "Posts".
PostType::renameDefaultPosts("News");
Get in touch if you have any question or are interested in contributing to this. Or just fork away. Just be sure to keep the license files.