WP_List_Table::prepare_items()publicWP 3.1.0

Prepares the list of items for displaying.

Method of the class: WP_List_Table{}

No Hooks.

Return

null. Nothing (null).

Usage

$WP_List_Table = new WP_List_Table();
$WP_List_Table->prepare_items();

Changelog

Since 3.1.0 Introduced.

WP_List_Table::prepare_items() code WP 6.5.2

public function prepare_items() {
	die( 'function WP_List_Table::prepare_items() must be overridden in a subclass.' );
}