WordPress php升级到7.4提示Warning: Use of undefined constant GMT – assumed ‘GMT’

WordPress php升级到7.4提示Warning: Use of undefined constant GMT – assumed ‘GMT’

今天将php从7.1升到了7.4,升级后网站地图页面,地图页面顶部却出现了以下提示信息:

Warning: Use of undefined constant GMT – assumed ‘GMT’ 等信息

翻译器翻译了下,从字面意思来看,常量GMT未被定义。网上搜索了下,相关信息说是php 7.2更改了这个常量的书写格式。

首先在主题编辑处打开地图文件。

其次,定位到提示的行。

发现此处代码是 get_lastpostmodified(GMT),获取最后一篇日志的最后修改时间。百度了下php7.2 获取时间的格式,只需要给GMT加上引号就行。

即将 get_lastpostmodified(GMT) 改为 get_lastpostmodified(‘GMT’) 即可解决问题。