WP_Privacy_Requests_Table::column_created_timestamp( WP_User_Request $item ): string

In this article

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

Parameters

$itemWP_User_Requestrequired
Item being shown.

Return

string Human readable date.

Source

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

Changelog

VersionDescription
5.7.0Introduced.

User Contributed Notes

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