Guest User

Untitled

a guest
Feb 23rd, 2012
25
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.67 KB | None | 0 0
  1. <?php
  2. /**
  3. * The Header for our theme.
  4. *
  5. * Displays all of the <head> section and everything up till <div id="main">
  6. *
  7. * @package WordPress
  8. * @subpackage scrapcar
  9. * @since scrapcar 1.0
  10. */
  11. ?><!DOCTYPE html>
  12. <html <?php language_attributes(); ?>>
  13. <head>
  14. <meta name="msvalidate.01" content="A0945260480221DDCFD86C9630276739" />
  15. <meta name="google-site-verification" content="PT4_AGDAekx654BS2lptDoUI1eQLYOy0hZCebKRuWRo" /> <META name="y_key" content="f5e0b6b882fe0467" /> <meta name="msvalidate.01" content="ACF6DCF50E558A11E2F7F269F0858590" />
  16. <meta charset="<?php bloginfo( 'charset' ); ?>" />
  17. <title><?php
  18. /*
  19. * Print the <title> tag based on what is being viewed.
  20. */
  21. global $page, $paged;
  22.  
  23. wp_title( '|', true, 'right' );
  24.  
  25.  
  26. // Add the blog name.
  27. bloginfo( 'name' );
  28.  
  29. // Add the blog description for the home/front page.
  30. $site_description = get_bloginfo( 'description', 'display' );
  31. if ( $site_description && ( is_home() || is_front_page() ) )
  32. echo " | $site_description";
  33.  
  34. // Add a page number if necessary:
  35. if ( $paged >= 2 || $page >= 2 )
  36. echo ' | ' . sprintf( __( 'Page %s' ), max( $paged, $page ) );
  37.  
  38. ?></title>
  39. <link rel="profile" href="http://gmpg.org/xfn/11" />
  40. <link rel="stylesheet" type="text/css" media="all" href="<?php bloginfo( 'stylesheet_url' ); ?>" />
  41. <link rel="pingback" href="<?php bloginfo( 'pingback_url' ); ?>" />
  42. <?php
  43. /* We add some JavaScript to pages with the comment form
  44. * to support sites with threaded comments (when in use).
  45. */
  46. if ( is_singular() && get_option( 'thread_comments' ) )
  47. wp_enqueue_script( 'comment-reply' );
  48.  
  49. /* Always have wp_head() just before the closing </head>
  50. * tag of your theme, or you will break many plugins, which
  51. * generally use this hook to add elements to <head> such
  52. * as styles, scripts, and meta tags.
  53. */
  54. wp_head();
  55. ?>
  56. </head>
  57.  
  58. <body <?php body_class(); ?>>
  59. <div id="wrapper" class="hfeed">
  60. <div id="header">
  61. <div id="masthead">
  62. <div id="branding" role="banner">
  63. <?php $heading_tag = ( is_home() || is_front_page() ) ? 'h1' : 'div'; ?>
  64. <<?php echo $heading_tag; ?> id="site-title">
  65. <span>
  66. <a href="<?php echo home_url( '/' ); ?>" title="<?php echo esc_attr( get_bloginfo( 'name', 'display' ) ); ?>" rel="home"><?php bloginfo( 'name' ); ?></a> <span style="”font-family: italic; color:#000000 ; font-size: x-large;">0800 043 4048
  67.  
  68.  
  69.  
  70.  
  71.  
  72. </<?php echo $heading_tag; ?>>
  73. <div id="site-contact"><span style="font-size: 19px;color: #FF9A06;"> Scrap Car Disposal Fully Licensed <br/>
  74.  
  75.  
  76. <?php bloginfo(''); ?>
  77. <div id="site-description"><?php bloginfo( 'description' ); ?></div><!-- #sitedescription -->
  78.  
  79. </div><!-- #branding -->
  80.  
  81. <div id="access" role="navigation">
  82. <?php /* Allow screen readers / text browsers to skip the navigation menu and get right to the good stuff */ ?>
  83. <div class="skip-link screen-reader-text"><a href="#content" title="<?php esc_attr_e( 'Skip to content', 'scrapcar' ); ?>"><?php _e( 'Skip to content', 'scrapcar' ); ?></a></div>
  84. <?php /* Our navigation menu. If one isn't filled out, wp_nav_menu falls back to wp_page_menu. The menu assiged to the primary position is the one used. If none is assigned, the menu with the lowest ID is used. */ ?>
  85. <?php wp_nav_menu( array( 'container_class' => 'menu-header', 'theme_location' => 'primary' ) ); ?>
  86. </div><!-- #access -->
  87. </div><!-- #masthead -->
  88. </div><!-- #header -->
  89.  
  90. <div id="main">
Advertisement
Add Comment
Please, Sign In to add comment