Make WordPress Core


Ignore:
Timestamp:
03/29/2010 12:48:03 AM (16 years ago)
Author:
iammattthomas
Message:

Merge twentyten print style into style.css. Fixes #12733. Props demetris.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-content/themes/twentyten/header.php

    r13846 r13872  
    33<head>
    44        <meta charset="<?php bloginfo( 'charset' ); ?>" />
    5     <title><?php
    6         if ( is_single() ) {
     5        <title><?php
     6        // Returns the title based on the type of page being viewed
     7                if ( is_single() ) {
    78                        single_post_title(); echo ' | '; bloginfo( 'name' );
    89                } elseif ( is_home() || is_front_page() ) {
     
    1718                        wp_title( '' ); echo ' | '; bloginfo( 'name' ); twentyten_the_page_number();
    1819                }
    19     ?></title>
     20        ?></title>
    2021        <link rel="profile" href="http://gmpg.org/xfn/11" />
    2122        <link rel="stylesheet" type="text/css" media="all" href="<?php bloginfo( 'stylesheet_url' ); ?>" />
    22         <link rel="stylesheet" type="text/css" media="print" href="<?php bloginfo( 'stylesheet_directory' ); ?>/print.css" />
    2323        <?php if ( is_singular() ) wp_enqueue_script( 'comment-reply' ); ?>
    2424        <link rel="pingback" href="<?php bloginfo( 'pingback_url' ); ?>" />
Note: See TracChangeset for help on using the changeset viewer.