WP_List_Table::display_rows()publicWP 3.1.0

Generates the table rows.

Method of the class: WP_List_Table{}

No Hooks.

Return

null. Nothing (null).

Usage

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

Changelog

Since 3.1.0 Introduced.

WP_List_Table::display_rows() code WP 6.5.2

public function display_rows() {
	foreach ( $this->items as $item ) {
		$this->single_row( $item );
	}
}