我在自定义表格中的wordpress网站上有这个代码。页面在这里: http://ulsandbox.org/bbtb10/?page_id=183
<h1> 2009 Authors List</h1>
<h3> Click on each author to read more about them</h3>
<p> </p>
<hr align="left" width="75%">
View Categories:<p><a href="#childrens">Childrens</a> | <a href="#fiction">Fiction</a> | <a href="#non-fiction">Non-Fiction</a> | <a href="#teen">Teen</a> | <a href="#other">Other</a></p>
<p> </p>
<?php
$results = $wpdb->get_results( 'SELECT author_sub9.Sid, author_sub9.author_lname, author_sub9.author_fname, author_sub9.title, author_sub9.genre, author_sub9.approved
FROM author_sub9
WHERE author_sub9.approved = 1
ORDER BY author_sub9.genre,author_sub9.author_lname', ARRAY_A );
$sLastGenre='';
if ($results) {
foreach ($results as $Row)
if ($Row['genre']!=$sLastGenre)
{
if ($sLastGenre != '')
echo '<br /><a href="authordetail.php?recordID='.$Row['Sid'].'">'.$Row['author_lname'].'</a>'.','.$Row['author_fname'].'<br />';
$sLastGenre=$Row['genre'];
}
}
?>
正如你所看到的那样:
Fatal error: Call to a member function get_results() on a non-object
答案 0 :(得分:0)
您是否已将$ wpdb添加为全局?
global $wpdb;
$wpdb->get_result($sql, ARRAY_A);