Created
August 6, 2013 03:30
-
-
Save rabbitinblack/6161782 to your computer and use it in GitHub Desktop.
Wordpress : Head for header.php
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 7]> | |
<html class="ie ie7" <?php language_attributes(); ?>> | |
<![endif]--> | |
<!--[if IE 8]> | |
<html class="ie ie8" <?php language_attributes(); ?>> | |
<![endif]--> | |
<!--[if !(IE 7) | !(IE 8) ]><!--> | |
<html <?php language_attributes(); ?>> | |
<!--<![endif]--> | |
<head> | |
<meta charset="<?php bloginfo( 'charset' ); ?>" /> | |
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1" /> | |
<title><?php wp_title( '|', true, 'right' ); ?></title> | |
<link rel="profile" href="http://gmpg.org/xfn/11" /> | |
<link rel="pingback" href="<?php bloginfo( 'pingback_url' ); ?>" /> | |
<!--[if lt IE 9]> | |
<script src="<?php echo get_template_directory_uri(); ?>/js/html5.js" type="text/javascript"></script> | |
<![endif]--> | |
<?php wp_head(); ?> | |
</head> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment