我扩展了wp_list_table类,现在我想从数据库中获取数据,我正在使用this example
这是我的数据获取代码
function subscribers() {
global $wpdb;
$table_name = "wp_custom_table";
$result = '';
$results = $wpdb->get_results( "SELECT * FROM $table_name");
if(!empty($results)) // Checking if $results have some values or not
{
foreach($results as $row){
return $result = $row->email;
}
} else {
return $result = " 0 resulst";
}
}
所以我想要什么:
我希望在获取数据后将其存储在这样的数组中
var $example_data = array(
array(
'ID' => 1,
'email' => 'R@test.com'
),
array(
'ID' => 2,
'email' => 'Z@test.com',
)
);