WP_Privacy_Requests_Table::single_row( WP_User_Request $item )

In this article

Generates content for a single row of the table,

Parameters

$itemWP_User_Requestrequired
The current item.

Source

public function single_row( $item ) {
	$status = $item->status;

	echo '<tr id="request-' . esc_attr( $item->ID ) . '" class="status-' . esc_attr( $status ) . '">';
	$this->single_row_columns( $item );
	echo '</tr>';
}

Changelog

VersionDescription
4.9.6Introduced.

User Contributed Notes

You must log in before being able to contribute a note or feedback.