Buddypress – 评论日期显示在“回复 01.January.1970,现在

Buddypress – Comment date showing in “replied 01.January.1970, right now

我在我的 wordpress 网站上使用 Buddypress。我有一个关于日期的问题。当我评论任何主题时,加载日期将以以下格式显示 -

"replied 01.January.1970, right now" .

Question Image http://www.dataflakes.com/testabc/askamet/img/questionimage.png

但是当我刷新页面时,它会显示正确的日期和时间。

WordPress 版本 - 4.1.8 BuddyPress 版本 - 2.2.1

在此先致谢

该日期是 PHP 中时间 ('strtotime') 的开始日期。因此,当您撰写评论时, WP/BP 似乎没有从服务器读取实际时间。这就是为什么它显示默认 'strtotime.'

但是当你提交评论和页面刷新时,它会从服务器获取实际时间。

您或许可以编辑评论功能,因此请确保它调用 WP 功能 get_the_date()

https://codex.wordpress.org/Function_Reference/get_the_date

但我会先关闭除 BPress 之外的所有插件,然后尝试发表评论。可能某处发生冲突。