WP_List_Table::display_rows()
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() WP List Table::display rows code WP 6.6.2
public function display_rows() { foreach ( $this->items as $item ) { $this->single_row( $item ); } }