我终于发现它是由PHP5引起的。5版本,这是因为不推荐使用的函数mysql\\u connect()。我可以通过更改文件/wp includes/wp db来解决这个问题。php(第1142行)。
$this->dbh = mysql_connect( $this->dbhost, $this->dbuser, $this->dbpassword, $new_link, $client_flags );
更改为:
$this->dbh = @mysql_connect( $this->dbhost, $this->dbuser, $this->dbpassword, $new_link, $client_flags );
这使库正常工作,等待wp与PHP5的兼容性。5.