PageRenderTime 38ms CodeModel.GetById 17ms RepoModel.GetById 0ms app.codeStats 0ms

/wp-includes/theme-compat/header.php

https://bitbucket.org/abnopanda/wordpress
PHP | 49 lines | 29 code | 9 blank | 11 comment | 4 complexity | 3fd3b556981db4e167346367d1f4ee20 MD5 | raw file
  1. <?php
  2. /**
  3. * @package WordPress
  4. * @subpackage Theme_Compat
  5. * @deprecated 3.0
  6. *
  7. * This file is here for Backwards compatibility with old themes and will be removed in a future version
  8. *
  9. */
  10. _deprecated_file( sprintf( __( 'Theme without %1$s' ), basename(__FILE__) ), '3.0', null, sprintf( __('Please include a %1$s template in your theme.'), basename(__FILE__) ) );
  11. ?>
  12. <!DOCTYPE html>
  13. <html xmlns="http://www.w3.org/1999/xhtml" <?php language_attributes(); ?>>
  14. <head profile="http://gmpg.org/xfn/11">
  15. <meta http-equiv="Content-Type" content="<?php bloginfo('html_type'); ?>; charset=<?php bloginfo('charset'); ?>" />
  16. <title><?php wp_title('&laquo;', true, 'right'); ?> <?php bloginfo('name'); ?></title>
  17. <link rel="stylesheet" href="<?php bloginfo('stylesheet_url'); ?>" type="text/css" media="screen" />
  18. <link rel="pingback" href="<?php bloginfo('pingback_url'); ?>" />
  19. <style type="text/css" media="screen">
  20. <?php
  21. // Checks to see whether it needs a sidebar
  22. if ( empty($withcomments) && !is_single() ) {
  23. ?>
  24. #page { background: url("<?php bloginfo('stylesheet_directory'); ?>/images/kubrickbg-<?php bloginfo('text_direction'); ?>.jpg") repeat-y top; border: none; }
  25. <?php } else { // No sidebar ?>
  26. #page { background: url("<?php bloginfo('stylesheet_directory'); ?>/images/kubrickbgwide.jpg") repeat-y top; border: none; }
  27. <?php } ?>
  28. </style>
  29. <?php if ( is_singular() ) wp_enqueue_script( 'comment-reply' ); ?>
  30. <?php wp_head(); ?>
  31. </head>
  32. <body <?php body_class(); ?>>
  33. <div id="page">
  34. <div id="header" role="banner">
  35. <div id="headerimg">
  36. <h1><a href="<?php echo home_url(); ?>/"><?php bloginfo('name'); ?></a></h1>
  37. <div class="description"><?php bloginfo('description'); ?></div>
  38. </div>
  39. </div>
  40. <hr />