WP_Application_Passwords_List_Table::single_row
Generates content for a single row of the table.
Method of the class: WP_Application_Passwords_List_Table{}
No Hooks.
Returns
null. Nothing (null).
Usage
$WP_Application_Passwords_List_Table = new WP_Application_Passwords_List_Table(); $WP_Application_Passwords_List_Table->single_row( $item );
- $item(array) (required)
- The current item.
Changelog
| Since 5.6.0 | Introduced. |
WP_Application_Passwords_List_Table::single_row() WP Application Passwords List Table::single row code WP 6.9.1
public function single_row( $item ) {
echo '<tr data-uuid="' . esc_attr( $item['uuid'] ) . '">';
$this->single_row_columns( $item );
echo '</tr>';
}