Skip to content

Instantly share code, notes, and snippets.

@rajeevedmonds
Created February 4, 2013 12:25
Show Gist options
  • Save rajeevedmonds/4706468 to your computer and use it in GitHub Desktop.
Save rajeevedmonds/4706468 to your computer and use it in GitHub Desktop.
<!DOCTYPE html>
<html <?php language_attributes(); ?>>
<head>
<meta charset="<?php bloginfo( 'charset' ); ?>" />
<title><?php wp_title ( '|', true,'right' ); ?></title>
<link rel="profile" href="http://gmpg.org/xfn/11" />
<link rel="stylesheet" type="text/css" media="all" href="<?php bloginfo( 'stylesheet_url' ); ?>" />
<link rel="pingback" href="<?php bloginfo( 'pingback_url' ); ?>" />
<?php
/*
* The following code will support threaded comments (wherever applicable)
*/
if ( is_singular() && get_option( 'thread_comments' ) )
wp_enqueue_script( 'comment-reply' );
/* This essential function call must be present before the closing <head> tag. */
wp_head();
?>
</head>
<body>
<div id="content-wrapper">
<div id="header">
<h1><a href="<?php echo get_option('home'); ?>"><?php bloginfo('name'); ?></a></h1>
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment