WP_List_Table::display_rows
Generates the list table rows.
Method of the class: WP_List_Table{}
No Hooks.
Returns
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.8.3
public function display_rows() {
foreach ( $this->items as $item ) {
$this->single_row( $item );
}
}