Orders::single_row( WP_Post $item )
Generates content for a single row of the table
Contents
Parameters
- $item
-
(WP_Post) (Required) The current item
Source
File: src/Tickets/Commerce/Admin_Tables/Orders.php
public function single_row( $item ) {
echo '<tr class="' . esc_attr( $item->post_status ) . '">';
$this->single_row_columns( $item );
echo '</tr>';
}
Changelog
| Version | Description |
|---|---|
| 5.2.0 | Introduced. |