Created
March 7, 2012 00:16
-
-
Save FernE97/1990017 to your computer and use it in GitHub Desktop.
html: WordPress Head
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!doctype html> | |
<!--[if IE 6 ]> <html <?php language_attributes(); ?> class="no-js ie6"> <![endif]--> | |
<!--[if IE 7 ]> <html <?php language_attributes(); ?> class="no-js ie7"> <![endif]--> | |
<!--[if IE 8 ]> <html <?php language_attributes(); ?> class="no-js ie8"> <![endif]--> | |
<!--[if IE 9 ]> <html <?php language_attributes(); ?> class="no-js ie9"> <![endif]--> | |
<!--[if (gt IE 9)|!(IE)]><!--> <html <?php language_attributes(); ?> class="no-js"> <!--<![endif]--> | |
<head> | |
<meta charset="<?php bloginfo( 'charset' ); ?>"> | |
<title><?php wp_title( '|', true, 'right' ); bloginfo( 'name' ); ?></title> | |
<link rel="stylesheet" href="<?php bloginfo( 'stylesheet_url' ); ?>?v=1.0"> | |
<link rel="pingback" href="<?php bloginfo( 'pingback_url' ); ?>"> | |
<?php wp_head(); ?> | |
</head> | |
<body <?php body_class(); ?>> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment