Advertisement
wclendining

Header.php-Basic

Mar 16th, 2015
450
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.82 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.       global navigation stuff goes here.
  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.       cardinal navigation stuff goes here
  20.    </nav>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement