まず、Web標準という観点から、XHTMLの文書構造を修正します。文法的には間違っていなくても、タグの意味的に適切ではないと思われる箇所も変更します。
- index.phpの11行目の<h3~></h3>を<h2~></h2>に変更。
- index.phpの9行目の<?php the_date('','<h2>','</h2>'); ?>を<?php the_date('','<span>','</span>'); ?>に変更し、12行目の「@」後ろに半角スペースを入れて、その直後に移動。ついでに12行目の「Filed under」を「category」に変更。
- header.htmlの2行目の
<html xmlns="http://www.w3.org/1999/xhtml">
を
<html xmlns="http://www.w3.org/1999/xhtml" dir="ltr" xml:lang="ja" lang="ja">
に変更。
- header.htmlの6行目の次に
<meta http-equiv="Content-Script-Type" content="text/javascript" />
<meta http-equiv="Content-Style-Type" content="text/css" />
を挿入。
- page.phpの7行目の<h3>~</h3>を<h2>~</h2>に変更し、5行目<h2><?php bloginfo('name'); ?></h2>を削除。
- comments.phpの62行目とcomments-paged.phpの80行目の<textarea ~></textarea>に class="commentarea"を追加し、cols="100%"を cols="70"に変更。
- footer.phpの6行目の<p class="credit"></p>の次に1行追加。
<address>Copyright © 2007 <?php the_author() ?>. All Rights
Reserved.</address>
修正したファイルすべてを「wp-content/themes/customize」にアップして上書きします。とりあえずこれで、Another HTML-lintで文法チェックすると各ページで80点以上になりますので良しとしましょう。細かい修正はまた今度。
今回はここまで。