Hi,
So, TobiasBg was right. I was change it back, with new fix:
$tablepress_tables = TablePress::$controller->model_table->load_all();
foreach( $tablepress_tables as $table_id ) {
$table = TablePress::$controller->model_table->load( $table_id );
// $table is now the table array, with ID, name, and description
}
Hi,
$table in this result only have id. Nothing more, but, I find out we can edit file models\model-table.php in 252 line.
$table = $this->load( $table_id, false, true); // Load table without data and options to save memory
Good luck to you