我創建簡單的插件工作,它在主網頁的工作,但是當我創建一個鏈接到用戶去爲見informaation的另一頁,它告訴我致命錯誤:未捕獲的錯誤:調用一個成員函數get_results()
我的代碼是:
<?php
global $wpdb;
$results = $wpdb->get_results("SELECT * FROM wp_customers");
?>
<body>
<table>
<tr>
<th>ID</th>
<th>Name</th>
<th>Family</th>
<th>Numbers</th>
<th>Tell</th>
</tr>
<?php foreach($results as $results){
?>
<tr>
<td>
<?php echo $results->id; ?>
</td>
<td>
<?php echo $results->name; ?>
</td>
<td>
<?php echo $results->family; ?>
</td>
<td>
<?php echo $results->numbers; ?>
</td>
<td>
<?php echo $results->tell; ?>
</td>
<?php }?>
</tr>
</table>
您是否已將數據庫前綴設置爲「wp_」以外的內容? –