サイドバーのカレンダー表示が12 月 2007となっていてなんとなく落ち着かない。
プラグインで対応しようと作成してみたがうまくいかなかった。
ファイルを直接修正するとバージョンアップのときに困るがいたしかたない。
wp-includes\general-template.phpの547行目を

 <caption>’ . $wp_locale->get_month($thismonth) . ‘ ‘ . date(‘Y’, $unixmonth) . ‘</caption>

下のようにして 

 <caption>’ . date(‘Y’, $unixmonth) . ‘年 ‘ . $wp_locale->get_month($thismonth) . ‘</caption>

修正した。