Advertisement
Guest User

from aas-bd.com

a guest
Dec 5th, 2012
53
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 6.50 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 Twenty_Eleven
  9. * @since Twenty Eleven 1.0
  10. */
  11. ?><!DOCTYPE html>
  12. <!--[if IE 6]>
  13. <html id="ie6" <?php language_attributes(); ?>>
  14. <![endif]-->
  15. <!--[if IE 7]>
  16. <html id="ie7" <?php language_attributes(); ?>>
  17. <![endif]-->
  18. <!--[if IE 8]>
  19. <html id="ie8" <?php language_attributes(); ?>>
  20. <![endif]-->
  21. <!--[if !(IE 6) | !(IE 7) | !(IE 8) ]><!-->
  22. <html <?php language_attributes(); ?>>
  23. <!--<![endif]-->
  24. <head>
  25. <meta charset="<?php bloginfo( 'charset' ); ?>" />
  26. <meta name="viewport" content="width=device-width" />
  27. <title><?php
  28. /*
  29. * Print the <title> tag based on what is being viewed.
  30. */
  31. global $page, $paged;
  32.  
  33. wp_title( '|', true, 'right' );
  34.  
  35. // Add the blog name.
  36. bloginfo( 'name' );
  37.  
  38. // Add the blog description for the home/front page.
  39. $site_description = get_bloginfo( 'description', 'display' );
  40. if ( $site_description && ( is_home() || is_front_page() ) )
  41. echo " | $site_description";
  42.  
  43. // Add a page number if necessary:
  44. if ( $paged >= 2 || $page >= 2 )
  45. echo ' | ' . sprintf( __( 'Page %s', 'twentyeleven' ), max( $paged, $page ) );
  46.  
  47. ?></title>
  48. <meta name="description" content="ISO Certification,ISO audit and ISO standard like ISO 9001,ISO 14001 information in Bangladesh will be found from this ISO Certification site." />
  49. <meta name="keywords" content="iso certification in bangladesh,ISO 9001,iso 14001,What is iso 9001,about iso 9001, iso standards,about iso 14001, iso agent, aas,ISO auditors in bangladesh,iso consultant in bangladesh,iso certification cost in bangladesh,bas,bas certification, advanced assessment services,cb,cb in bangladesh, cetification body in bangladesh, iso 9001, iso 14001,aas,aas-bd,what is iso, iso certificate in bangladesh, bas, bas certification,bas agent in bangladesh, ISO agent in bangladesh" />
  50. <link rel="profile" href="http://gmpg.org/xfn/11" />
  51. <link rel="stylesheet" type="text/css" media="all" href="<?php bloginfo( 'stylesheet_url' ); ?>" />
  52. <link rel="pingback" href="<?php bloginfo( 'pingback_url' ); ?>" />
  53. <!--[if lt IE 9]>
  54. <script src="<?php echo get_template_directory_uri(); ?>/js/html5.js" type="text/javascript"></script>
  55. <![endif]-->
  56. <?php
  57. /* We add some JavaScript to pages with the comment form
  58. * to support sites with threaded comments (when in use).
  59. */
  60. if ( is_singular() && get_option( 'thread_comments' ) )
  61. wp_enqueue_script( 'comment-reply' );
  62.  
  63. /* Always have wp_head() just before the closing </head>
  64. * tag of your theme, or you will break many plugins, which
  65. * generally use this hook to add elements to <head> such
  66. * as styles, scripts, and meta tags.
  67. */
  68. wp_head();
  69. ?>
  70. </head>
  71.  
  72. <body <?php body_class(); ?>>
  73. <div id="page" class="hfeed">
  74. <header id="branding" role="banner">
  75. <hgroup>
  76. <header id="branding" style="background-color: #FFFFFF ;">
  77. <h2 id="header-description" style="background-color:#FFA500;">
  78. <h1 id="site-title"><span><a href="<?php echo esc_url( home_url( '/' ) ); ?>" title="<?php echo esc_attr( get_bloginfo( 'name', 'display' ) ); ?>" rel="home"><img id="site-logo" src="<?php echo get_stylesheet_directory_uri(); ?>/images/aaslogo2.png" alt="" /><?php bloginfo( 'name' ); ?></a></span> <b id="site-description"><?php bloginfo( 'description' ); ?></b></h1>
  79.  
  80. </hgroup>
  81.  
  82. <?php
  83. // Check to see if the header image has been removed
  84. $header_image = get_header_image();
  85. if ( $header_image ) :
  86. // Compatibility with versions of WordPress prior to 3.4.
  87. if ( function_exists( 'get_custom_header' ) ) {
  88. // We need to figure out what the minimum width should be for our featured image.
  89. // This result would be the suggested width if the theme were to implement flexible widths.
  90. $header_image_width = get_theme_support( 'custom-header', 'width' );
  91. } else {
  92. $header_image_width = HEADER_IMAGE_WIDTH;
  93. }
  94. ?>
  95. <a href="<?php echo esc_url( home_url( '/' ) ); ?>">
  96. <?php
  97. // The header image
  98. // Check if this is a post or page, if it has a thumbnail, and if it's a big one
  99. if ( is_singular() && has_post_thumbnail( $post->ID ) &&
  100. ( /* $src, $width, $height */ $image = wp_get_attachment_image_src( get_post_thumbnail_id( $post->ID ), array( $header_image_width, $header_image_width ) ) ) &&
  101. $image[1] >= $header_image_width ) :
  102. // Houston, we have a new header image!
  103. echo get_the_post_thumbnail( $post->ID, 'post-thumbnail' );
  104. else :
  105. // Compatibility with versions of WordPress prior to 3.4.
  106. if ( function_exists( 'get_custom_header' ) ) {
  107. $header_image_width = get_custom_header()->width;
  108. $header_image_height = get_custom_header()->height;
  109. } else {
  110. $header_image_width = HEADER_IMAGE_WIDTH;
  111. $header_image_height = HEADER_IMAGE_HEIGHT;
  112. }
  113. ?>
  114. <img src="<?php header_image(); ?>" width="<?php echo $header_image_width; ?>" height="<?php echo $header_image_height; ?>" alt="" />
  115. <?php endif; // end check for featured image or standard header ?>
  116. </a>
  117. <?php endif; // end check for removed header image ?>
  118.  
  119. <?php
  120. // Has the text been hidden?
  121. if ( 'blank' == get_header_textcolor() ) :
  122. ?>
  123. <div class="only-search<?php if ( $header_image ) : ?> with-image<?php endif; ?>">
  124. <?php get_search_form(); ?>
  125. </div>
  126. <?php
  127. else :
  128. ?>
  129. <?php get_search_form(); ?>
  130. <?php endif; ?>
  131.  
  132. <nav id="access" role="navigation">
  133. <h3 class="assistive-text"><?php _e( 'Main menu', 'twentyeleven' ); ?></h3>
  134. <?php /* Allow screen readers / text browsers to skip the navigation menu and get right to the good stuff. */ ?>
  135. <div class="skip-link"><a class="assistive-text" href="#content" title="<?php esc_attr_e( 'Skip to primary content', 'twentyeleven' ); ?>"><?php _e( 'Skip to primary content', 'twentyeleven' ); ?></a></div>
  136. <div class="skip-link"><a class="assistive-text" href="#secondary" title="<?php esc_attr_e( 'Skip to secondary content', 'twentyeleven' ); ?>"><?php _e( 'Skip to secondary content', 'twentyeleven' ); ?></a></div>
  137. <?php /* Our navigation menu. If one isn't filled out, wp_nav_menu falls back to wp_page_menu. The menu assigned to the primary location is the one used. If one isn't assigned, the menu with the lowest ID is used. */ ?>
  138. <?php wp_nav_menu( array( 'theme_location' => 'primary' ) ); ?>
  139. </nav><!-- #access -->
  140. </header><!-- #branding -->
  141.  
  142.  
  143. <div id="main">
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement