WordPress默认的文章索引日期格式为“四位数字年+汉字月”,如“2010年四月”,看起来很不习惯,现在我们把它改成“Y年n月”格式,如:“2015年4月”。 方法:
备份后打开,找到function wp_get_archives($args = '')这段中的: if ('monthly' == $type) 块中设置 $text 的代码:
$text = sprintf(__('%1$s %2$d'),wp_locale->get_month($arcresult->month), $arcresult->year);
$text = sprintf( __('%1$s年%2$s月' ), $result->year,zeroise($result->month,1));
或(3.8以下版本):
$text = sprintf(__('%1$s年%2$s月 (%3$d)'), $arcresult->year, zeroise(intval($arcresult->month), 1), $arcresult->posts);
【其中,→month值为1时显示为“1~12月”,值为2时显示为“01~12月”。】
保存后,上传覆盖主机空间相应文件即可。