Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试向使用 CMS WordPress 的网站添加投票系统。
我想应该使用 AJAX,并且我有一个模板文件和一个访问数据库的外部 PHP 文件,但这显然不能正常工作。
我收到此错误:
“调用未定义的函数 add_action()”。
$wpdb可能不能在外部 PHP 文件中使用。
$wpdb
我如何定义$wpdb能够使用它?
您应该使用 $wpdb 作为全局变量,并且可以从函数中的任何位置调用它。