月別アーカイブの表記変更
WordPressの月別アーカイブの表記(書式)を変更する際のメモ
アップデートごとにコアファイルをいじる効率悪いことをしているのですが、いつも忘れてしまう
参考
wp-includes/general-template.php
をいじるのは同じですが、ver3.6だと981行目あたりに該当の記述があり
$text = sprintf(__('%1$s %2$d'), $wp_locale->get_month($result->month), $result->year);
これを
$text = sprintf(__('%4d/%02d'), $result->year, $wp_locale->get_month($result->month));
などにすると「2013/08」などと出力
文字列操作に関しては下記参考