WordPressで月別アーカイブリストで、
「2009年January」とかなってるのを、「2009/01」に変える。
wp-includes/general-template.php
の
$text = sprintf(__('%1$s %2$d'), $wp_locale->get_month($arcresult->month), $arcresult->year);
を、
$text = sprintf(('%04d/%02d'), $arcresult->year, $arcresult->month);
に変更。