Advertisement
ried

twentytwelve_header.php

Feb 16th, 2017
145
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Nim 3.94 KB | None | 0 0
  1. <?php
  2. /**
  3.  * The Header template for our theme
  4.  *
  5.  * Displays all of the <head> section and everything up till <div id="main">
  6.  *
  7.  * @package WordPress
  8.  * @subpackage Twenty_Twelve
  9.  * @since Twenty Twelve 1.0
  10.  */
  11. ?><!DOCTYPE html>
  12. <!--[if IE 7]>
  13. <html class="ie ie7" <?php language_attributes(); ?>>
  14. <![endif]-->
  15. <!--[if IE 8]>
  16. <html class="ie ie8" <?php language_attributes(); ?>>
  17. <![endif]-->
  18. <!--[if !(IE 7) & !(IE 8)]><!-->
  19. <html <?php language_attributes(); ?>>
  20. <!--<![endif]-->
  21. <head>
  22. <!--IE8に対応-->
  23.     <meta http-equiv="X-UA-Compatible" content="IE=edge">
  24.     <!--[if lt IE 9]>
  25.     <script src="http://sophia-healing.com/Scripts/html5shiv.js"></script>
  26.     <![endif]-->
  27.     <script src="http://sophia-healing.com/Scripts/respond.src.js"></script>
  28. <!-- / IE8に対応-->
  29. <!--add-->
  30. <?php
  31. header("Content-Type:text/html; charset=UTF-8");
  32. ?>
  33. <meta charset="<?php bloginfo( 'charset' ); ?>" />
  34. <meta name="viewport" content="width=device-width" />
  35. <title><?php wp_title( '|', true, 'right' ); ?></title>
  36. <link rel="profile" href="http://gmpg.org/xfn/11" />
  37. <link rel="pingback" href="<?php bloginfo( 'pingback_url' ); ?>" />
  38. <?php // Loads HTML5 JavaScript file to add support for HTML5 elements in older IE versions. ?>
  39. <!--[if lt IE 9]>
  40. <script src="<?php echo get_template_directory_uri(); ?>/js/html5.js" type="text/javascript"></script>
  41. <![endif]-->
  42. <?php wp_head(); ?>
  43. <link rel="shortcut icon" type="image/vnd.microsoft.icon" href="<?php bloginfo('template_directory'); ?>/images/favicon.ico">
  44. <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
  45. <!--meta name="viewport" content="width=device-width, user-scalable=no, maximum-scale=1" /-->
  46. <meta name="viewport" content="width=device-width,user-scalable=yes,initial-scale=1,maximum-scale=2,minimum-scale=0.25," /><!--width=960,-->
  47. </head>
  48.  
  49. <body <?php body_class(); ?>>
  50. <div id="page" class="hfeed site">
  51.     <header id="masthead" class="site-header" role="banner">
  52.         <hgroup>
  53.             <h2 class="site-description"><?php bloginfo( 'description' ); ?></h2>
  54.             <h1 class="site-title" id="logo"><a href="<?php echo esc_url( home_url( '/' ) ); ?>" title="<?php echo esc_attr( get_bloginfo( 'name', 'display' ) ); ?>" rel="home"><?php bloginfo( 'name' ); ?></a></h1>
  55.         </hgroup>
  56.            
  57.         <div class="f_right" style="margin-top:-25px"><!--add-->
  58.                
  59.                  <!--add-->
  60.             <div id="tel-mail">
  61.                 <span class=" font12" style="margin-right:185px">お気軽にご相談ください(無料相談有)<span class=" font12 c_red"> MAIL24h受付</span></span><br>
  62.  
  63. <span class="font12">tel. </span><span class="font23">090-4838-6328</span>  <a href="http://www.sophia-healing.com/reserve-contact/"><IMG src="http://www.sophia-healing.com/wp-content/themes/Green/images/mail.jpg" style="border:0"
  64. onMouseOver=this.src='http://www.sophia-healing.com/wp-content/themes/Green/images/mail2.jpg'
  65. onMouseOut=this.src='http://www.sophia-healing.com/wp-content/themes/Green/images/mail.jpg' alt="お問い合わせフォーム"></a> <div class="searchform" style="position: relative; float: right;    margin:0; padding:0; margin: -12px 0 0 10px;    width: 177px; height: 24px; "><?php get_search_form(); ?></div>
  66.             </div>
  67.         <!--/・add-->
  68.                
  69.         </div>
  70.         <!--/.add-->
  71.  
  72.  
  73.         <nav id="site-navigation" class="main-navigation" role="navigation">
  74.             <button class="menu-toggle"><?php _e( 'Menu', 'twentytwelve' ); ?></button>
  75.             <a class="assistive-text" href="#content" title="<?php esc_attr_e( 'Skip to content', 'twentytwelve' ); ?>"><?php _e( 'Skip to content', 'twentytwelve' ); ?></a>
  76.             <?php wp_nav_menu( array( 'theme_location' => 'primary', 'menu_class' => 'nav-menu' ) ); ?>
  77.         </nav><!-- #site-navigation -->
  78.  
  79.         <?php if ( get_header_image() ) : ?>
  80.        
  81.         <?php if ( function_exists( 'meteor_slideshow' ) ) { meteor_slideshow(); } ?>
  82.        
  83.         <?php endif; ?>
  84.     </header><!-- #masthead -->
  85.  
  86.     <div id="main" class="wrapper">
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement