Advertisement
wclendining

Header.phpAncillary

Mar 18th, 2015
475
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.85 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html <?php language_attributes(); ?>>
  3.    <head>
  4.       <meta http-equiv="Content-Type" content="<?php bloginfo('html_type'); ?>" charset="<?php bloginfo('charset'); ?>" />
  5.       <title><?php wp_title(''); ?><?php if(wp_title('', false)) { echo ':'; } ?> <?php bloginfo('name'); ?></title>
  6.       <link rel="stylesheet" type="text/css" media="all" href="<?php bloginfo('stylesheet_url'); ?>" />
  7.       <link rel="pingback" href="<?php bloginfo('pingback_url'); ?>" />
  8.       <?php wp_head(); ?>
  9.    </head>
  10. <body>
  11.    <nav id="global">
  12.       <?php include (TEMPLATEPATH . '/global-nav.php'); ?>
  13.    </nav>
  14.    <header>
  15.       <h1 class="SiteName"><?php bloginfo('name'); ?></h1>
  16.       <p class="TagLine"><?php bloginfo('description'); ?></p>
  17.    </header>
  18.    <nav id="cardinal">
  19.       <?php include (TEMPLATEPATH . '/cardinal-nav.php'); ?>
  20.    </nav>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement