我已将一个新页面添加到我的管理区域,现在正尝试使用WP List Table class (根据these instructions). 按照说明,我想首先只显示一个空表:只显示标题,没有数据行(如下所示screenshot). 我很难做到这一点。我已经添加了建议的代码,但我的表仍然只显示No items found.
, 没有标题(screenshot). 你知道为什么会这样吗?我的代码如下。
PHP日志中没有错误。
我也看到了these instructions, 与我使用的说明相似(但不完全相同)。但遵循它们也会产生同样的问题。
提前谢谢。
<小时>
Code added to functions.php
if(!class_exists(\'WP_List_Table\')){
require_once( ABSPATH . \'wp-admin/includes/class-wp-list-table.php\' );
}
class User_List_Table extends WP_List_Table {
public function get_columns() {
$table_columns = array(
\'cb\' => \'<input type="checkbox" />\', // to display the checkbox.
\'user_login\' => \'User Login\',
\'display_name\' => \'Display Name\',
\'ID\' => \'User Id\'
);
return $table_columns;
}
public function prepare_items() {}
}
Code added to page to display the table.
$wp_list_table = new User_List_Table();
$wp_list_table->display();