WP_Privacy_Requests_Table::column_created_timestamp() WordPress Method
This function outputs the created timestamp for a privacy request in the WP_Privacy_Requests_Table.
WP_Privacy_Requests_Table::column_created_timestamp( WP_User_Request $item ) #
Created timestamp column. Overridden by children.
Parameters
- $item
(WP_User_Request)(Required)Item being shown.
Return
(string) Human readable date.
Source
File: wp-admin/includes/class-wp-privacy-requests-table.php
public function column_created_timestamp( $item ) {
return $this->get_timestamp_as_date( $item->created_timestamp );
}
Expand full source codeCollapse full source codeView on TracView on GitHub
Changelog
| Version | Description |
|---|---|
| 5.7.0 | Introduced. |