【如何修复我在php 7更新wordpress时出现的问题】请帮助我修复。我已经将PHP 5.6更新为php7.3。但是WordPress网站无法正常运行。如你所见, 尽管有相同的代码和相同的数据库, 但新站点的以下页面仍无法正常工作。我已经根据StackOverflow的答案将”
&new”
替换为”
new”
。谢谢你给我答复。谢谢。
#1
Thanks.
I added some codes in the wp-config.phpini_set('log_errors', 'On');
ini_set('display_errors', 'Off');
ini_set('error_reporting', E_ALL );
define('WP_DEBUG', false);
define('WP_DEBUG_LOG', true);
define('WP_DEBUG_DISPLAY', false);
And I updatedthe customLoop function in the PeThemeContent.php
public function customLoop($type, $count = 10, $tax = null, $custom = null, $paged = false) {
$args = $this->
getPostsQueryArgs($type, $count, $tax, $custom, $paged);
if ($this->
current) {
$this->
loops[] = $this->
current;
}
$this->
master->
data->
postSave();
$this->
current = new WP_Query($args);
return $this->
current->
post_count >
0;
}
这样, 问题就解决了。
推荐阅读
- 如何解决WordPress的嵌套子类别存档页面的URL问题
- 如何修复页面响应()
- 如何修正WordPress主题中index.php默认的id=error-page
- LFS 系列从零开始 DIY Linux 系统(构建临时系统 - Binutils-2.25)
- 8.常见的权限表示形式
- 操作系统_第三章处理器管理_进程的调度算法
- 操作系统_进程同步与进程通信_多线程技术的优势
- 树莓派Pi4b 8G版本安装centos7
- 树莓派安装python3并配置pip