Advertisement
adsleeblythe

header.php Fluxipress

Oct 3rd, 2013
61
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 1.52 KB | None | 0 0
  1. <!DOCTYPE html>
  2.  
  3. <html <?php language_attributes(); ?>>
  4.  
  5. <head>
  6.  
  7. <meta charset="<?php bloginfo( 'charset' ); ?>" />
  8.  
  9.  
  10.  
  11. <meta name="viewport" content="width=device-width, initial-scale=1, minimum-scale=1" />
  12.  
  13.  
  14. <link rel="stylesheet" type="text/css" media="all" href="<?php bloginfo('template_directory'); ?>/style.css" />
  15.  
  16.  
  17. <?php $blogTitle = get_bloginfo('name'); ?>
  18.  
  19. <title><?php wp_title( '-', true, 'left' ); ?></title>
  20.  
  21. <link rel="profile" href="http://gmpg.org/xfn/11" />
  22.  
  23. <link rel="pingback" href="<?php bloginfo( 'pingback_url' ); ?>" />
  24.  
  25.  
  26.  
  27. <?php if(is_singular()) wp_enqueue_script('comment-reply', false, array(), false, true); ?>
  28.  
  29. <?php wp_head(); ?>
  30.  
  31. </head>
  32.  
  33.  
  34.  
  35. <body <?php body_class('lt-480'); ?>>
  36.  
  37. <div id="page-wrap">
  38.  
  39. <div id="page">
  40.  
  41.  
  42.  
  43.     <a id="mobile-menu" href="#menu"></a>
  44.  
  45.    
  46.  
  47.     <div id="header">
  48.  
  49.         <div class="wrap">
  50.  
  51.             <div class="inner">
  52.  
  53.                 <?php if(is_home()) : ?><h1 id="blog-title"><?php else : ?><strong id="blog-title"><?php endif; ?><a href="<?php echo home_url(); ?>" title="<?php echo str_replace('"', '\'', $blogTitle); ?>"><img src="http://www.adamleeblythe.co.uk/wp-content/themes/fluxipress-child/images/alb-logo.png" alt="<?php echo $blogTitle ?>" /></a><?php if(is_home()) : ?></h1><?php else : ?></strong><?php endif; ?>
  54.  
  55.                 <div id="menu">
  56.  
  57.                 <?php
  58.  
  59.                     wp_nav_menu(array(
  60.  
  61.                         'theme_location' => 'primary',
  62.  
  63.                         'container' => false
  64.  
  65.                     ));
  66.  
  67.                 ?>
  68.  
  69.                 </div>
  70.  
  71.             </div>
  72.  
  73.         </div>
  74.  
  75.     </div>
  76.  
  77.  
  78.  
  79.     <div id="main" class="wrap clear">
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement