PageRenderTime 37ms CodeModel.GetById 16ms RepoModel.GetById 0ms app.codeStats 0ms

/blog/wp-content/themes/monochrome/header.php

https://bitbucket.org/sergiohzlz/reportaprod
PHP | 37 lines | 31 code | 6 blank | 0 comment | 3 complexity | d271b70f3848d717afc72d12808a8044 MD5 | raw file
Possible License(s): GPL-2.0, GPL-3.0, AGPL-1.0, LGPL-2.1
  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  2. <html xmlns="http://www.w3.org/1999/xhtml" <?php language_attributes(); ?>>
  3. <head profile="http://gmpg.org/xfn/11">
  4. <meta http-equiv="Content-Type" content="<?php bloginfo( 'html_type' ); ?>; charset=<?php bloginfo( 'charset' ); ?>" />
  5. <title><?php wp_title(); ?> <?php bloginfo( 'name' ); ?></title>
  6. <link rel="stylesheet" href="<?php bloginfo( 'stylesheet_url' ); ?>" type="text/css" media="screen" />
  7. <?php if ( strtoupper( get_locale() ) == 'JA' ) ://to fix the font-size for japanese font ?>
  8. <link rel="stylesheet" href="<?php bloginfo( 'stylesheet_directory' ); ?>/japanese.css" type="text/css" media="screen" />
  9. <?php endif; ?>
  10. <!--[if lt IE 7]>
  11. <link rel="stylesheet" href="<?php bloginfo( 'stylesheet_directory' ); ?>/ie6.css" type="text/css" media="screen" />
  12. <![endif]-->
  13. <link rel="pingback" href="<?php bloginfo( 'pingback_url' ); ?>" />
  14. <?php
  15. if ( is_singular() ) wp_enqueue_script( 'comment-reply' );
  16. wp_head();
  17. ?>
  18. </head>
  19. <body <?php body_class(); ?>>
  20. <div id="wrapper">
  21. <div id="header" class="clearfix">
  22. <div id="header_top">
  23. <div id="logo">
  24. <a href="<?php echo home_url( '/' ); ?>"><?php bloginfo( 'name' ); ?></a>
  25. <h1><?php bloginfo( 'description' ); ?></h1>
  26. </div>
  27. <div id="header_menu">
  28. <?php wp_nav_menu( array( 'container' => false, 'theme_location' => 'primary', 'menu_id' => 'menu', 'fallback_cb' => 'monochrome_page_menu' ) ); ?>
  29. </div>
  30. </div>
  31. </div><!-- #header end -->