WP_Privacy_Requests_Table::column_created_timestamp()publicWP 5.7.0

Returns the markup for the Created timestamp column. Overridden by children.

Method of the class: WP_Privacy_Requests_Table{}

No Hooks.

Return

String. Human readable date.

Usage

$WP_Privacy_Requests_Table = new WP_Privacy_Requests_Table();
$WP_Privacy_Requests_Table->column_created_timestamp( $item );
$item(WP_User_Request) (required)
Item being shown.

Changelog

Since 5.7.0 Introduced.

WP_Privacy_Requests_Table::column_created_timestamp() code WP 6.5.2

public function column_created_timestamp( $item ) {
	return $this->get_timestamp_as_date( $item->created_timestamp );
}