少しずつデフォルトのテーマを変更します

デフォルトのWPを変更しましょう(b´∀`)ネッ!
TOPページの変更から( ´∀`)bグッ!

まずTOPの画像が大きいので縦幅を変更
(function.php)header_image_heightを198→98に変更

// Add a filter to twentyten_header_image_width and twentyten_header_image_height to change these values.
define( 'HEADER_IMAGE_WIDTH', apply_filters( 'twentyten_header_image_width', 940 ) );
define( 'HEADER_IMAGE_HEIGHT', apply_filters( 'twentyten_header_image_height', 98 ) );
                                                                               ^^

タイトルを削除
(header.php)以下のソースを削除した

60         <!--
61  <?php $heading_tag = ( is_home() || is_front_page() ) ? 'h1' : 'div'; ?>
62 <<?php echo $heading_tag; ?> id="site-title">
63 <span>
64  <a href="<?php echo home_url( '/' ); ?>" title="<?php echo esc_attr( get_bloginfo( 'name', 'display ) ); ?>" rel="home"><?php bloginfo( 'name' ); ?></a>
65  </span>
66  </<?php echo $heading_tag; ?>>
67  <div id="site-description"><?php bloginfo( 'descriosion' ); ?></div> 
68         -->