WP_Privacy_Requests_Table::column_created_timestamp( WP_User_Request $item ): string

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


Parameters

$item WP_User_Request Required
Item being shown.

Top ↑

Return

string Human readable date.


Top ↑

Source

File: wp-admin/includes/class-wp-privacy-requests-table.php. View all references

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


Top ↑

Changelog

Changelog
Version Description
5.7.0 Introduced.

Top ↑

User Contributed Notes

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