Orders::single_row( WP_Post $item )

Generates content for a single row of the table


Parameters

$item

(WP_Post) (Required) The current item


Top ↑

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>';
	}

Top ↑

Changelog

Changelog
Version Description
5.2.0 Introduced.