我正在使用Wordpress主题模板管理运动队、比赛、球员等。
我用法语安排了当地的wordpress时间。在博客部分,毫无疑问,这篇文章是用法语显示日期的。
但是有一个由插件管理的自定义帖子类型的all part。这个插件显示的日期仍然是英文的。
通过检查代码,我可以看到此处管理零件格式的日期:
功能团队\\u get\\u match\\u start($match\\u id,$format=\'j F Y/G:i\'){
$date_start = get_post_meta($match_id, \'_date_start\', true);
if (!$date_start || !strtotime($date_start)) {
return \'\';
}
$timezone_string = get_option(\'timezone_string\');
$gmt_offset = get_option(\'gmt_offset\');
if ($timezone_string) {
$tz = $timezone_string;
} else if ($gmt_offset > 0) {
$tz = date(\'+Hi\', abs($gmt_offset) * 3600);
} else if ($gmt_offset < 0) {
$tz = date(\'-Hi\', abs($gmt_offset) * 3600);
} else {
$tz = \'UTC\';
}
$datetime = date_create( $date_start, new DateTimeZone($tz));
return $datetime->format( $format );
这显示了2017年7月28日13:00。我想用法语。
我使用strftime()进行了多次失败的尝试。我正在阅读date\\u i18n()wordpress函数,但我不确定该如何处理它。
有人能帮我吗?
干杯伙计们