我有一个自定义的MySQL,可以在我迄今为止看到的每个WordPress系统上运行,但在一个客户系统上失败。
这不是我写的,所以我在想它的意思。
问题是它无法连接到MySQL数据库(或者它连接了,但没有获取数据)。
我应该使用什么诊断来追踪这个问题?
global $db_pdo,$wpdb;
$sql= "Select * from ".$wpdb->prefix."posts where post_type = :post_type";
$order_status = $db_pdo->prepare($sql);
$data=array(\':post_type\' => \'shop_order\');
$order_status->execute($data);