请帮助我修复。我已经将PHP 5.6更新为php7.3。但是WordPress网站无法正常运行。如你所见, 尽管有相同的代码和相同的数据库, 但新站点的以下页面仍无法正常工作。我已经根据StackOverflow的答案将”&new”替换为” new”。谢谢你给我答复。谢谢。
#1
Thanks.
I added some codes in the wp-config.php
ini_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 updated the 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;
}
这样, 问题就解决了。
评论前必须登录!
注册