在我的 wordpress 主题中,我创建了一个名为 update.php 的文件。我可以通过http://mydomain.com/wp-content/themes/mytheme/update.php访问这个 URL
这是 update.php 中的代码
global $wpdb;
// do some more stuff here
$wpdb->update( 'twitter_followers', array('count' => $followers), array('id' => '1') );
echo 'done';
当我转到此页面时,我收到此错误。
PHP Fatal error: Call to a member function update() on a non-object in /var/www/vhosts/mydomain.com/subdomains/mytheme/httpdocs/wp-content/themes/mytheme/update.php on line 34
关于如何解决这个问题的任何想法?
另请注意,我确实在我的数据库中创建了 twitter_followers 表。