Wordpress Contact form 7 日期格式不正确

Wordpress Contact form 7 date format incorrect

我在 wordpress 4.2 中使用联系表 7。我遇到的问题是,当收到邮件时,它是美国格式:2015-01-23。我的网站设置是英国英语,在表格上日期选择器默认为 dd/mm/yyyy 但我收到的邮件采用美国格式。我已经在标签中尝试了 date-format:dd/mm/yy ,但它仍然以美国的形式到达。这是最新的尝试:

<p>Date of Event: (Required)<br />
[date* date-387 _format_your-date "D, d M y"]
</p>

和邮件标签

Date of event: 
[date-387]

如果有人能帮助我将其更正为英国格式,我将不胜感激。谢谢

来自the documentation

Format Date Value in Mail

As previously explained, if a value is specified in a date field, the value must be in YYYY-MM-DD format (e.g. 2013-04-08). When the value is inserted into mail template, the date format keeps by default. To change the format in mail, you can use a variant of mail-tag notation [_format_{field name} "{date format}"].

因此,要更改邮件格式,您需要为 mail 标签提供日期格式。这与您应用于表单字段的任何格式不同。

另请注意,您要用实际字段的名称替换示例中的“您的日期”,例如,您的邮件标签应为:

[_format_date-387 "D, d M y"]