努力尽今夕,少年犹可夸。这篇文章主要讲述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) 即可解决问题。
【Should be compatible with WP_Widget::widget($args, $instance)】替换后再次访问网站,可以看到警告消失,舒服多了。
推荐阅读
- docker 镜像 overview
- 前端学习从青铜到王者—HTML常用标签
- Performance measurements for hypervisors on embedded ARM processors
- c++ 操作redis实例
- 跨分片方案 总结
- 一口气搞懂「文件系统」,就靠这 25 张图了
- 详解JAVA对象实例化过程
- 一文带你领略并发编程的内功心法
- Electron进程通信