WordPress 日历出现重复的“月”字符

问题:WordPress 日历出现重复的“月”字符

解决方法:使用PHP字符替换

修改“\wp-includes”路径下的general-template.php文件的大概2285行代码中的:

1
 $wp_locale->get_month( $thismonth ),

为:

1
 str_replace("月","", $wp_locale->get_month( $thismonth )),