Skip to content

Instantly share code, notes, and snippets.

@iamcanadian1973
Created February 6, 2014 22:56
Show Gist options
  • Save iamcanadian1973/8854187 to your computer and use it in GitHub Desktop.
Save iamcanadian1973/8854187 to your computer and use it in GitHub Desktop.
Genesis HTML conditional tags
/**
* HTML5 DOCTYPE
* removes the default Genesis doctype, adds new html5 doctype with IE8 detection
*/
function mb_html5_doctype() {
?>
<!DOCTYPE html>
<!--[if IE 8]> <html class="lt-ie9" <?php language_attributes( 'html' ); ?>> <![endif]-->
<!--[if gt IE 8]><!--> <html <?php language_attributes( 'html' ); ?>> <!--<![endif]-->
<head>
<meta charset="<?php bloginfo( 'charset' ); ?>" />
<?php
}
remove_action( 'genesis_doctype', 'genesis_do_doctype' );
add_action( 'genesis_doctype', 'mb_html5_doctype' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment