Changeset 13566 for trunk/wp-content/themes/twentyten/header.php
- Timestamp:
- 03/03/2010 12:38:00 AM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-content/themes/twentyten/header.php
r13565 r13566 3 3 <head> 4 4 <meta charset="<?php bloginfo('charset'); ?>" /> 5 6 5 <title><?php 7 6 if ( is_single() ) { … … 19 18 } 20 19 ?></title> 21 22 20 <link rel="profile" href="http://gmpg.org/xfn/11" /> 23 21 <link rel="stylesheet" type="text/css" media="all" href="<?php bloginfo('stylesheet_url'); ?>" /> 24 22 <link rel="stylesheet" type="text/css" media="print" href="<?php bloginfo('stylesheet_directory'); ?>/print.css" /> 25 26 <?php if ( preg_match( '/Apple.*Mobile.*Safari/i', $_SERVER['HTTP_USER_AGENT'] ) ) : ?>27 <link rel="stylesheet" type="text/css" media="all" href="<?php bloginfo('stylesheet_directory'); ?>/mobile-webkit.css" />28 <?php endif; ?>29 30 23 <?php if ( is_singular() ) wp_enqueue_script( 'comment-reply' ); ?> 31 32 24 <link rel="pingback" href="<?php bloginfo( 'pingback_url' ); ?>" /> 33 34 25 <?php wp_head(); ?> 35 26 </head> … … 37 28 <body <?php body_class(); ?>> 38 29 <div id="wrapper" class="hfeed"> 39 40 30 <div id="header"> 41 31 <div id="masthead"> 42 43 32 <div id="branding"> 44 33 <div id="site-title"><span><a href="<?php echo home_url('/'); ?>" title="<?php echo esc_attr( get_bloginfo( 'name', 'display' ) ); ?>" rel="home"><?php bloginfo( 'name' ); ?></a></span></div> … … 57 46 <?php wp_nav_menu( 'sort_column=menu_order' ); ?> 58 47 </div><!-- #access --> 59 60 48 </div><!-- #masthead --> 61 49 </div><!-- #header -->
Note: See TracChangeset
for help on using the changeset viewer.