WP_List_Table::single_row()
Generates content for a single row of the table.
Method of the class: WP_List_Table{}
No Hooks.
Return
null
. Nothing (null).
Usage
$WP_List_Table = new WP_List_Table(); $WP_List_Table->single_row( $item );
- $item(object|array) (required)
- The current item
Changelog
Since 3.1.0 | Introduced. |
WP_List_Table::single_row() WP List Table::single row code WP 6.6.2
public function single_row( $item ) { echo '<tr>'; $this->single_row_columns( $item ); echo '</tr>'; }