Should be compatible with WP_Widget::widget($args, $instance)

如果原有 WordPress 网站在 PHP 5.x 版本上运行正常,当把 PHP 版本升级到 7.x 时,可能会爆出很多警告提示,但是网站在警告的下方是可以展示并访问的。

警告信息:

Warning: Declaration of news::widget($instance) should be compatible with WP_Widget::widget($args, $instance) in D:\xxx\wp-content\themes\xxx\includes\widget.php on line 13

解决方法:只需要按照警告提示,找到方法所在文件 D:\xxx\wp-content\themes\xxx\includes\widget.php,替换文件中所有方法 widget($instance) 为 widget($args, $instance) 即可解决问题。

替换后再次访问网站,可以看到警告消失,舒服多了。

猜你喜欢

转载自blog.csdn.net/tzhuwb/article/details/125671071