The header.php in Bones looks almost identical to the header in the HTML5 Boilerplate, with a few key exceptions. Doctype <!doctype html> The doptype is the HTML5 doctype. It works and it’s not complicated. That’s pretty much it. HTML element <!–[if IEMobile 7 ]> <html <?php language_attributes(); ?>class=”no-js iem7″> <![endif]–> <!–[if lt IE 7 ]>… Read more »
Documentation
Adding Header Background Image Support
Adding WordPress 3+ Header Image Support is simple. You can drop the following code in the functions.php file and it will get you started. // header image define if (!defined(‘NO_HEADER_TEXT’)) { define(‘NO_HEADER_TEXT’, true ); } // no header text if (!defined(‘HEADER_TEXTCOLOR’)) { define(‘HEADER_TEXTCOLOR’, ‘ffffff’); } // header text color if (!defined(‘HEADER_IMAGE’)) { define(‘HEADER_IMAGE’, get_template_directory_uri() …. Read more »
Adding Icons & Favicons
Add Apple Touch Icons as well as Mobile Icons for your Bones Project.
