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.
我是 WordPress 的新手。我正在尝试从数据库中的自定义表中读取信息并将其显示在表单上,但是我的 SQL 语句不起作用。我在这里错过了什么?其他脚本已经在运行。这是我的代码。
$myrows = $wpdb->get_results( "SELECT * FROM wk2012_zipcodes" );
假设“wk2012”是您的表前缀,您不必对其进行硬编码,而是使用:
$myrows = $wpdb->get_results( "SELECT * FROM $wpdb->zipcodes" );
试试这种方式,让我知道它是否有效。
global $wpdb; $myrows = $wpdb->get_results( "SELECT * FROM $wpdb->zipcodes" );